[Webkit-unassigned] [Bug 31119] New: @transform values changes when accessing the SVGTransformList

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Nov 4 06:42:07 PST 2009


https://bugs.webkit.org/show_bug.cgi?id=31119

           Summary: @transform values changes when accessing the
                    SVGTransformList
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Mac OS X 10.5
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: SVG
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: codedread at gmail.com


Created an attachment (id=42483)
 --> (https://bugs.webkit.org/attachment.cgi?id=42483)
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

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list