Enable animVal support for SVGLengthList. This is the next logical step after bug 12437 lands, which implements animVal support for SVGLength. Once these two types are converted, all the ground work is done, and converting more types to use animVal is easy.
Created attachment 131166 [details] Draft patch Not meant for review yet, just to show the path on how to go on after 12437 landed.
Created attachment 131583 [details] Patch
Comment on attachment 131583 [details] Patch Wow another huga patch. Makes sense, only a few comments View in context: https://bugs.webkit.org/attachment.cgi?id=131583&action=review > Source/WebCore/svg/properties/SVGAnimatedListPropertyTearOff.h:78 > + virtual SVGGenericAnimatedType* currentBaseValue(AnimatedPropertyType expectedPropertyType) const Why these virtual functions goes into the header? Thay cannot be inlined. > Source/WebCore/svg/properties/SVGListProperty.h:57 > + // See SVGPropertyTearOff::detachWrapper() for an explaination what's happening here. explanation
(In reply to comment #3) > Why these virtual functions goes into the header? Thay cannot be inlined. There is no cpp file where I could move this, its a template class?
Comment on attachment 131583 [details] Patch Nice patch. r=me
Committed r110835: <http://trac.webkit.org/changeset/110835>