Open
Description
https://github.com/vvvv/SVG/blob/master/Source/SvgElement.cs#L383
get { return GetAttribute<SvgTransformCollection>("transform", false); }
Which forwards to https://github.com/vvvv/SVG/blob/master/Source/SvgElement.cs#L299
SvgAttributeCollection.GetAttribute
and SvgAttributeCollection.GetInheritedAttribute
return null
, which - in the end - violates best practice (a collection should never be null
, but rather empty).