Changeset 88020 in webkit


Ignore:
Timestamp:
Jun 3, 2011, 8:45:27 AM (14 years ago)
Author:
rwlbuis@webkit.org
Message:

2011-06-03 Rob Buis <rbuis@rim.com>

Reviewed by Nikolas Zimmermann.

Creating <animateMotion> elements via javascript do not execute
https://bugs.webkit.org/show_bug.cgi?id=34301

Update test results.

  • fast/dom/Window/window-properties-expected.txt:
  • fast/dom/Window/window-property-descriptors-expected.txt:
  • fast/dom/prototype-inheritance-2-expected.txt:
  • fast/dom/prototype-inheritance-expected.txt:
  • fast/js/global-constructors-expected.txt:
  • svg/custom/global-constructors-expected.txt:

2011-06-03 Rob Buis <rbuis@rim.com>

Reviewed by Nikolas Zimmermann.

Creating <animateMotion> elements via javascript do not execute
https://bugs.webkit.org/show_bug.cgi?id=34301

Enable constructors for SVGMPathElement and SVGAnimateMotionElement.

  • DerivedSources.cpp:
  • DerivedSources.make:
  • GNUmakefile.list.am:
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • page/DOMWindow.idl:
Location:
trunk
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r88018 r88020  
     12011-06-03  Rob Buis  <rbuis@rim.com>
     2
     3        Reviewed by Nikolas Zimmermann.
     4
     5        Creating <animateMotion> elements via javascript do not execute
     6        https://bugs.webkit.org/show_bug.cgi?id=34301
     7
     8        Update test results.
     9
     10        * fast/dom/Window/window-properties-expected.txt:
     11        * fast/dom/Window/window-property-descriptors-expected.txt:
     12        * fast/dom/prototype-inheritance-2-expected.txt:
     13        * fast/dom/prototype-inheritance-expected.txt:
     14        * fast/js/global-constructors-expected.txt:
     15        * svg/custom/global-constructors-expected.txt:
     16
    1172011-06-03  Marcus Bulach  <bulach@chromium.org>
    218
  • trunk/LayoutTests/fast/dom/Window/window-properties-expected.txt

    r86732 r88020  
    14181418window.SVGAnimateElement [object SVGAnimateElementConstructor]
    14191419window.SVGAnimateElement.prototype [printed above as window.Element.prototype]
     1420window.SVGAnimateMotionElement [object SVGAnimateMotionElementConstructor]
     1421window.SVGAnimateMotionElement.prototype [printed above as window.Element.prototype]
    14201422window.SVGAnimateTransformElement [object SVGAnimateTransformElementConstructor]
    14211423window.SVGAnimateTransformElement.prototype [printed above as window.Element.prototype]
     
    16461648window.SVGLinearGradientElement [object SVGLinearGradientElementConstructor]
    16471649window.SVGLinearGradientElement.prototype [printed above as window.Element.prototype]
     1650window.SVGMPathElement [object SVGMPathElementConstructor]
     1651window.SVGMPathElement.prototype [printed above as window.Element.prototype]
    16481652window.SVGMarkerElement [object SVGMarkerElementConstructor]
    16491653window.SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH [number]
  • trunk/LayoutTests/fast/dom/Window/window-property-descriptors-expected.txt

    r86315 r88020  
    168168PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGAnimateColorElement') is 'object'
    169169PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGAnimateElement') is 'object'
     170PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGAnimateMotionElement') is 'object'
    170171PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGAnimateTransformElement') is 'object'
    171172PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGAnimatedAngle') is 'object'
     
    236237PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGLineElement') is 'object'
    237238PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGLinearGradientElement') is 'object'
     239PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGMPathElement') is 'object'
    238240PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGMarkerElement') is 'object'
    239241PASS typeof Object.getOwnPropertyDescriptor(window, 'SVGMaskElement') is 'object'
  • trunk/LayoutTests/fast/dom/prototype-inheritance-2-expected.txt

    r85348 r88020  
    295295Never found SVGAnimateColorElement
    296296Never found SVGAnimateElement
     297Never found SVGAnimateMotionElement
    297298Never found SVGAnimateTransformElement
    298299Never found SVGAnimatedAngle
     
    362363Never found SVGLineElement
    363364Never found SVGLinearGradientElement
     365Never found SVGMPathElement
    364366Never found SVGMarkerElement
    365367Never found SVGMaskElement
  • trunk/LayoutTests/fast/dom/prototype-inheritance-expected.txt

    r86315 r88020  
    328328PASS inner.SVGAnimateElement.isInner is true
    329329PASS inner.SVGAnimateElement.constructor.isInner is true
     330PASS inner.SVGAnimateMotionElement.isInner is true
     331PASS inner.SVGAnimateMotionElement.constructor.isInner is true
    330332PASS inner.SVGAnimateTransformElement.isInner is true
    331333PASS inner.SVGAnimateTransformElement.constructor.isInner is true
     
    464466PASS inner.SVGLinearGradientElement.isInner is true
    465467PASS inner.SVGLinearGradientElement.constructor.isInner is true
     468PASS inner.SVGMPathElement.isInner is true
     469PASS inner.SVGMPathElement.constructor.isInner is true
    466470PASS inner.SVGMarkerElement.isInner is true
    467471PASS inner.SVGMarkerElement.constructor.isInner is true
  • trunk/LayoutTests/fast/js/global-constructors-expected.txt

    r86315 r88020  
    153153PASS SVGAnimateColorElement.toString() is '[object SVGAnimateColorElementConstructor]'
    154154PASS SVGAnimateElement.toString() is '[object SVGAnimateElementConstructor]'
     155PASS SVGAnimateMotionElement.toString() is '[object SVGAnimateMotionElementConstructor]'
    155156PASS SVGAnimateTransformElement.toString() is '[object SVGAnimateTransformElementConstructor]'
    156157PASS SVGAnimatedAngle.toString() is '[object SVGAnimatedAngleConstructor]'
     
    221222PASS SVGLineElement.toString() is '[object SVGLineElementConstructor]'
    222223PASS SVGLinearGradientElement.toString() is '[object SVGLinearGradientElementConstructor]'
     224PASS SVGMPathElement.toString() is '[object SVGMPathElementConstructor]'
    223225PASS SVGMarkerElement.toString() is '[object SVGMarkerElementConstructor]'
    224226PASS SVGMaskElement.toString() is '[object SVGMaskElementConstructor]'
  • trunk/LayoutTests/svg/custom/global-constructors-expected.txt

    r62092 r88020  
    144144PASS SVGAnimateElement.toString() is '[object SVGAnimateElementConstructor]'
    145145PASS SVGSetElement.toString() is '[object SVGSetElementConstructor]'
    146 FAIL SVGAnimateMotionElement.toString() should be [object SVGAnimateMotionElementConstructor]. Threw exception ReferenceError: Can't find variable: SVGAnimateMotionElement
    147 FAIL SVGMPathElement.toString() should be [object SVGMPathElementConstructor]. Threw exception ReferenceError: Can't find variable: SVGMPathElement
     146PASS SVGAnimateMotionElement.toString() is '[object SVGAnimateMotionElementConstructor]'
     147PASS SVGMPathElement.toString() is '[object SVGMPathElementConstructor]'
    148148PASS SVGAnimateColorElement.toString() is '[object SVGAnimateColorElementConstructor]'
    149149PASS SVGAnimateTransformElement.toString() is '[object SVGAnimateTransformElementConstructor]'
  • trunk/Source/WebCore/ChangeLog

    r88019 r88020  
     12011-06-03  Rob Buis  <rbuis@rim.com>
     2
     3        Reviewed by Nikolas Zimmermann.
     4
     5        Creating <animateMotion> elements via javascript do not execute
     6        https://bugs.webkit.org/show_bug.cgi?id=34301
     7
     8        Enable constructors for SVGMPathElement and SVGAnimateMotionElement.
     9
     10        * DerivedSources.cpp:
     11        * DerivedSources.make:
     12        * GNUmakefile.list.am:
     13        * WebCore.gypi:
     14        * WebCore.vcproj/WebCore.vcproj:
     15        * WebCore.xcodeproj/project.pbxproj:
     16        * page/DOMWindow.idl:
     17
    1182011-06-03  Hans Wennborg  <hans@chromium.org>
    219
     
    25982615        Include '+' in the list of valid characters.
    25992616
    2600 >>>>>>> .r87778
    260126172011-05-30  Andrey Petrov  <andrey.petrov@gmail.com>
    26022618
  • trunk/Source/WebCore/DerivedSources.cpp

    r87961 r88020  
    314314#include "JSSVGAnimatedTransformList.cpp"
    315315#include "JSSVGAnimateElement.cpp"
     316#include "JSSVGAnimateMotionElement.cpp"
    316317#include "JSSVGAnimateTransformElement.cpp"
    317318#include "JSSVGAnimationElement.cpp"
     
    371372#include "JSSVGLinearGradientElement.cpp"
    372373#include "JSSVGLineElement.cpp"
     374#include "JSSVGMPathElement.cpp"
    373375#include "JSSVGMarkerElement.cpp"
    374376#include "JSSVGMaskElement.cpp"
  • trunk/Source/WebCore/DerivedSources.make

    r87961 r88020  
    372372    SVGAnimateColorElement \
    373373    SVGAnimateElement \
     374    SVGAnimateMotionElement \
    374375    SVGAnimateTransformElement \
    375376    SVGAnimatedAngle \
     
    451452    SVGMetadataElement \
    452453    SVGMissingGlyphElement \
     454    SVGMPathElement \
    453455    SVGNumber \
    454456    SVGNumberList \
  • trunk/Source/WebCore/GNUmakefile.list.am

    r87961 r88020  
    41564156        DerivedSources/WebCore/JSSVGAnimateElement.cpp \
    41574157        DerivedSources/WebCore/JSSVGAnimateElement.h \
     4158        DerivedSources/WebCore/JSSVGAnimateMotionElement.cpp \
     4159        DerivedSources/WebCore/JSSVGAnimateMotionElement.h \
    41584160        DerivedSources/WebCore/JSSVGAnimateTransformElement.cpp \
    41594161        DerivedSources/WebCore/JSSVGAnimateTransformElement.h \
     
    42744276        DerivedSources/WebCore/JSSVGLineElement.h \
    42754277        DerivedSources/WebCore/JSSVGLocatable.h \
     4278        DerivedSources/WebCore/JSSVGMPathElement.cpp \
     4279        DerivedSources/WebCore/JSSVGMPathElement.h \
    42764280        DerivedSources/WebCore/JSSVGMarkerElement.cpp \
    42774281        DerivedSources/WebCore/JSSVGMarkerElement.h \
  • trunk/Source/WebCore/WebCore.gypi

    r87961 r88020  
    75047504            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGAnimateElement.cpp',
    75057505            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGAnimateElement.h',
     7506            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGAnimateMotionElement.cpp',
     7507            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGAnimateMotionElement.h',
    75067508            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGAnimateTransformElement.cpp',
    75077509            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGAnimateTransformElement.h',
     
    76847686            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGLocatable.cpp',
    76857687            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGLocatable.h',
     7688            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGMPathElement.cpp',
     7689            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGMPathElement.h',
    76867690            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGMarkerElement.cpp',
    76877691            '<(PRODUCT_DIR)/DerivedSources/WebCore/JSSVGMarkerElement.dep',
  • trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj

    r87961 r88020  
    1483114831                        </File>
    1483214832                        <File
     14833                                RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSSVGAnimateMotionElement.cpp"
     14834                                >
     14835                                <FileConfiguration
     14836                                        Name="Debug|Win32"
     14837                                        ExcludedFromBuild="true"
     14838                                        >
     14839                                        <Tool
     14840                                                Name="VCCLCompilerTool"
     14841                                        />
     14842                                </FileConfiguration>
     14843                                <FileConfiguration
     14844                                        Name="Release|Win32"
     14845                                        ExcludedFromBuild="true"
     14846                                        >
     14847                                        <Tool
     14848                                                Name="VCCLCompilerTool"
     14849                                        />
     14850                                </FileConfiguration>
     14851                                <FileConfiguration
     14852                                        Name="Debug_Cairo_CFLite|Win32"
     14853                                        ExcludedFromBuild="true"
     14854                                        >
     14855                                        <Tool
     14856                                                Name="VCCLCompilerTool"
     14857                                        />
     14858                                </FileConfiguration>
     14859                                <FileConfiguration
     14860                                        Name="Release_Cairo_CFLite|Win32"
     14861                                        ExcludedFromBuild="true"
     14862                                        >
     14863                                        <Tool
     14864                                                Name="VCCLCompilerTool"
     14865                                        />
     14866                                </FileConfiguration>
     14867                                <FileConfiguration
     14868                                        Name="Debug_All|Win32"
     14869                                        ExcludedFromBuild="true"
     14870                                        >
     14871                                        <Tool
     14872                                                Name="VCCLCompilerTool"
     14873                                        />
     14874                                </FileConfiguration>
     14875                                <FileConfiguration
     14876                                        Name="Production|Win32"
     14877                                        ExcludedFromBuild="true"
     14878                                        >
     14879                                        <Tool
     14880                                                Name="VCCLCompilerTool"
     14881                                        />
     14882                                </FileConfiguration>
     14883                        </File>
     14884                        <File
     14885                                RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSSVGAnimateMotionElement.h"
     14886                                >
     14887                        </File>
     14888                        <File
    1483314889                                RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSSVGAnimateTransformElement.cpp"
    1483414890                                >
     
    1798018036                        <File
    1798118037                                RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSSVGLineElement.h"
     18038                                >
     18039                        </File>
     18040                        <File
     18041                                RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSSVGMPathElement.cpp"
     18042                                >
     18043                                <FileConfiguration
     18044                                        Name="Debug|Win32"
     18045                                        ExcludedFromBuild="true"
     18046                                        >
     18047                                        <Tool
     18048                                                Name="VCCLCompilerTool"
     18049                                        />
     18050                                </FileConfiguration>
     18051                                <FileConfiguration
     18052                                        Name="Release|Win32"
     18053                                        ExcludedFromBuild="true"
     18054                                        >
     18055                                        <Tool
     18056                                                Name="VCCLCompilerTool"
     18057                                        />
     18058                                </FileConfiguration>
     18059                                <FileConfiguration
     18060                                        Name="Debug_Cairo_CFLite|Win32"
     18061                                        ExcludedFromBuild="true"
     18062                                        >
     18063                                        <Tool
     18064                                                Name="VCCLCompilerTool"
     18065                                        />
     18066                                </FileConfiguration>
     18067                                <FileConfiguration
     18068                                        Name="Release_Cairo_CFLite|Win32"
     18069                                        ExcludedFromBuild="true"
     18070                                        >
     18071                                        <Tool
     18072                                                Name="VCCLCompilerTool"
     18073                                        />
     18074                                </FileConfiguration>
     18075                                <FileConfiguration
     18076                                        Name="Debug_All|Win32"
     18077                                        ExcludedFromBuild="true"
     18078                                        >
     18079                                        <Tool
     18080                                                Name="VCCLCompilerTool"
     18081                                        />
     18082                                </FileConfiguration>
     18083                                <FileConfiguration
     18084                                        Name="Production|Win32"
     18085                                        ExcludedFromBuild="true"
     18086                                        >
     18087                                        <Tool
     18088                                                Name="VCCLCompilerTool"
     18089                                        />
     18090                                </FileConfiguration>
     18091                        </File>
     18092                        <File
     18093                                RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSSVGMPathElement.h"
    1798218094                                >
    1798318095                        </File>
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r87961 r88020  
    10031003                448A29C00A46D9CB0030759F /* JSHTMLOptionsCollection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 448A29BE0A46D9CB0030759F /* JSHTMLOptionsCollection.cpp */; };
    10041004                448AD27C0A48137A0023D179 /* JSHTMLOptionsCollectionCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 448AD27A0A4813790023D179 /* JSHTMLOptionsCollectionCustom.cpp */; };
     1005                4496E39D1398136C003EE32A /* JSSVGAnimateMotionElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4496E39B1398136C003EE32A /* JSSVGAnimateMotionElement.cpp */; };
     1006                4496E39E1398136C003EE32A /* JSSVGAnimateMotionElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 4496E39C1398136C003EE32A /* JSSVGAnimateMotionElement.h */; };
     1007                4496E3A0139813A5003EE32A /* JSSVGMPathElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 4496E39F139813A5003EE32A /* JSSVGMPathElement.h */; };
     1008                4496E3A2139813CB003EE32A /* JSSVGMPathElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4496E3A1139813CB003EE32A /* JSSVGMPathElement.cpp */; };
    10051009                449B19F50FA72ECE0015CA4A /* HTMLParserQuirks.h in Headers */ = {isa = PBXBuildFile; fileRef = 449B19F30FA72ECE0015CA4A /* HTMLParserQuirks.h */; settings = {ATTRIBUTES = (Private, ); }; };
    10061010                44A28AAC12DFB8AC00AE923B /* MathMLElementFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A28AAB12DFB8AC00AE923B /* MathMLElementFactory.h */; };
     
    75807584                448AD27A0A4813790023D179 /* JSHTMLOptionsCollectionCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLOptionsCollectionCustom.cpp; sourceTree = "<group>"; };
    75817585                449098B10F8F82520076A327 /* FeatureDefines.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = FeatureDefines.xcconfig; sourceTree = "<group>"; };
     7586                4496E39B1398136C003EE32A /* JSSVGAnimateMotionElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSSVGAnimateMotionElement.cpp; path = ../../WebKitBuild/Release/DerivedSources/WebCore/JSSVGAnimateMotionElement.cpp; sourceTree = SOURCE_ROOT; };
     7587                4496E39C1398136C003EE32A /* JSSVGAnimateMotionElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSSVGAnimateMotionElement.h; path = ../../WebKitBuild/Release/DerivedSources/WebCore/JSSVGAnimateMotionElement.h; sourceTree = SOURCE_ROOT; };
     7588                4496E39F139813A5003EE32A /* JSSVGMPathElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSSVGMPathElement.h; path = ../../WebKitBuild/Release/DerivedSources/WebCore/JSSVGMPathElement.h; sourceTree = SOURCE_ROOT; };
     7589                4496E3A1139813CB003EE32A /* JSSVGMPathElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSSVGMPathElement.cpp; path = ../../WebKitBuild/Release/DerivedSources/WebCore/JSSVGMPathElement.cpp; sourceTree = SOURCE_ROOT; };
    75827590                449B19F30FA72ECE0015CA4A /* HTMLParserQuirks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLParserQuirks.h; sourceTree = "<group>"; };
    75837591                44A28AAB12DFB8AC00AE923B /* MathMLElementFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathMLElementFactory.h; sourceTree = "<group>"; };
     
    1670216710                        isa = PBXGroup;
    1670316711                        children = (
     16712                                4496E3A1139813CB003EE32A /* JSSVGMPathElement.cpp */,
     16713                                4496E39F139813A5003EE32A /* JSSVGMPathElement.h */,
     16714                                4496E39B1398136C003EE32A /* JSSVGAnimateMotionElement.cpp */,
     16715                                4496E39C1398136C003EE32A /* JSSVGAnimateMotionElement.h */,
    1670416716                                B20111050AB7740500DB0E68 /* JSSVGAElement.cpp */,
    1670516717                                B20111060AB7740500DB0E68 /* JSSVGAElement.h */,
     
    2311923131                                8C0E334D138A92C7008DA94F /* LevelDBTransaction.h in Headers */,
    2312023132                                8C0E334F138A92C7008DA94F /* LevelDBWriteBatch.h in Headers */,
     23133                                4496E39E1398136C003EE32A /* JSSVGAnimateMotionElement.h in Headers */,
     23134                                4496E3A0139813A5003EE32A /* JSSVGMPathElement.h in Headers */,
    2312123135                                2E2445F71395893A004B6C19 /* OperationNotAllowedException.h in Headers */,
    2312223136                                2E24476913959173004B6C19 /* JSOperationNotAllowedException.h in Headers */,
     
    2584625860                                8C0E334C138A92C7008DA94F /* LevelDBTransaction.cpp in Sources */,
    2584725861                                8C0E334E138A92C7008DA94F /* LevelDBWriteBatch.cpp in Sources */,
     25862                                4496E39D1398136C003EE32A /* JSSVGAnimateMotionElement.cpp in Sources */,
     25863                                4496E3A2139813CB003EE32A /* JSSVGMPathElement.cpp in Sources */,
    2584825864                                2E24476813959173004B6C19 /* JSOperationNotAllowedException.cpp in Sources */,
    2584925865                        );
  • trunk/Source/WebCore/page/DOMWindow.idl

    r87197 r88020  
    717717        attribute SVGAnimateColorElementConstructor SVGAnimateColorElement;
    718718        attribute SVGAnimateElementConstructor SVGAnimateElement;
    719 //      attribute SVGAnimateMotionElementConstructor SVGAnimateMotionElement;
     719        attribute SVGAnimateMotionElementConstructor SVGAnimateMotionElement;
    720720        attribute SVGAnimateTransformElementConstructor SVGAnimateTransformElement;
    721 //      attribute SVGMPathElementConstructor SVGMPathElement;
     721        attribute SVGMPathElementConstructor SVGMPathElement;
    722722        attribute SVGSetElementConstructor SVGSetElement;
    723723#endif
Note: See TracChangeset for help on using the changeset viewer.