Changes between Version 5 and Version 6 of SVG properties
- Timestamp:
- Mar 7, 2019, 1:46:49 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SVG properties
v5 v6 17 17 18 18 1. It has to be RefCounted because the DOM object will encapsulate the same SVG property and this DOM object can outlive the owner element. 19 2. Some properties are SVG lists of SVG types, e.g. SVGNumberList and SVGPointList. In addition of having the SVGNumberList itself Refcounted, all the items themselves have to be RefCounted also. The items can outlive the owner list itself. 20 3. 19 2. Some properties are SVG lists of SVG types, e.g. SVGNumberList and SVGPointList. In addition of having the list itself Refcounted, all the items of this list have to be RefCounted also. The items can outlive the owner list.