Skip to content

Commit 08f43ed

Browse files
committed
after fixing normalization, getDegrees needs to output the right value
1 parent df2b966 commit 08f43ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

org/w3c/css/values/CssAngle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public CssAngle getAngle() {
189189
//@@FIXME I should return the remainder for all ...
190190

191191
public float getDegree() {
192-
return normalize(value).floatValue();
192+
return normalize(value).multiply(factor).floatValue();
193193
}
194194

195195
/**

0 commit comments

Comments
 (0)