[Webkit-unassigned] [Bug 12620] New: "values" attribute of <animateTransform type="rotate"> is divided by 10.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 5 13:13:36 PST 2007


http://bugs.webkit.org/show_bug.cgi?id=12620

           Summary: "values" attribute of <animateTransform type="rotate">
                    is divided by 10.
           Product: WebKit
           Version: 420+ (nightly)
          Platform: Macintosh PowerPC
        OS/Version: Mac OS X 10.4
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: SVG
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: francisga at gmail.com


The values of the "values" attribute are read as divided by 10, at least during
a rotation transform.  Thus in the following SVG, the stroke rotates not 30,
60, and 90 degrees but 3, 6, and 9.  ("values='0;300;600;900'" will give the
behavior desired here.)

<?xml version="1.0" standalone="yes"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
                 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
     <line x2="50" stroke="black" stroke-width="10" >
                <animateTransform
                type="rotate" calcMode="discrete" repeatCount="indefinite"
dur="1s"
                values="0;300;600;900"/>
        </line>
</svg>


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



More information about the webkit-unassigned mailing list