Changes between Version 2 and Version 3 of SVG properties


Ignore:
Timestamp:
Mar 7, 2019 1:34:33 PM (5 years ago)
Author:
Said Abou-Hallawa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SVG properties

    v2 v3  
    88
    991. It has its own DOM interface which is separate from getAttribute() and setAttribute() methods.
    10 2. It is a reflection of a DOM attribute. This means, setAttribute() should, affect the SVG property once it is called. Also getAttribute() should reflect the latest changed value of the SVG property.
     102. It is a reflection of a DOM attribute. This means, setAttribute() should, affect the SVG property once it is called. Also getAttribute() should reflect the latest changed value of the SVG property. Let's call updating the SVG property from the attribute 'synchronize'. And let's call updating the attribute from the SVG property 'commit'
     113. Most of the properties are animated properties. The animated property has two members baseVal() and the animal(). Each of them are from the same SVG property type.  animal() differs from baseVal() only when animating. Otherwise they have to be the same value.
     124, The animal() of the animated property is read only property.
     135. The SVG property can be attached to an SVGElement or it can be detached.