Bug 46429 - Exception thrown when using animateTransform
Summary: Exception thrown when using animateTransform
Status: NEW
Alias: None
Product: Batik - Now in Jira
Classification: Unclassified
Component: Animation engine (show other bugs)
Version: 1.8
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: Batik Developer's Mailing list
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-21 12:40 UTC by Cameron McCormack
Modified: 2008-12-30 14:54 UTC (History)
1 user (show)



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Cameron McCormack 2008-12-21 12:40:23 UTC
This test case throws an exception "! >= !":

<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink">
  <g transform="translate(150 150) scale(0.5)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue">
      <animateTransform attributeName="transform" attributeType="XML"
        type="scale" fill="freeze" by="1" dur="0.5s"
        repeatCount="3" accumulate="sum"/>
    </path>
  </g>
</svg>