Created attachment 42483 [details] Test case exhibiting the problem The attached test case shows that by referencing an element's SVGTransformList, it changes the DOM value of the @transform attribute to "matrix(...)". The value of an attribute shouldn't be changed just be accessing a DOM property. Gecko/Opera browsers do not do this. var t1 = someElem.getAttribute('transform'); someElem.transform; // just accessing this DOM property var t2 = someElem.getAttribute('transform'); t1 != t2
Hello Jeff, (In reply to comment #0) > Created an attachment (id=42483) [details] > Test case exhibiting the problem > > The attached test case shows that by referencing an element's SVGTransformList, it changes the DOM value of the @transform attribute to "matrix(...)". The value of an attribute shouldn't be changed just be accessing a DOM property. Gecko/Opera browsers do not do this. > > > var t1 = someElem.getAttribute('transform'); > someElem.transform; // just accessing this DOM property > var t2 = someElem.getAttribute('transform'); > > t1 != t2 I cant reproduce this anymore in trunk, can you confirm? If so we can close this bug report. Cheers, Rob.
krit confirmed this is fixed as well, so closing.