What steps will reproduce the problem?
1. Call clone on HTMLInternalTransform
2. Adjust the original transform
3. See changes affected by adjustments in cloned transform
What is the expected output? What do you see instead?
The transform should be the same as when it was cloned.
What version of the product are you using? On what operating system?
Please provide any additional information below.
clone method could be changed from:
@Override
public Transform clone() {
return new HtmlInternalTransform(matrix);
}
to:
@Override
public Transform clone() {
return new HtmlInternalTransform(this);
}
Original issue reported on code.google.com by colem...@gmail.com on 11 Apr 2012 at 3:32
Original issue reported on code.google.com by
colem...@gmail.com
on 11 Apr 2012 at 3:32