summaryrefslogtreecommitdiff
path: root/src/parse/properties.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-01-23 20:45:02 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-01-23 20:45:02 +0000
commit74022a10da9e4b72919a954a2d2284ae65a2a4be (patch)
tree75e13271a326b6dbcc91355e0c197a1ec93fc04f /src/parse/properties.c
parent6d512fd22fdda551aeb57a6b1a6534b187a64dcb (diff)
downloadlibcss-74022a10da9e4b72919a954a2d2284ae65a2a4be.tar.gz
libcss-74022a10da9e4b72919a954a2d2284ae65a2a4be.tar.bz2
There's 400 gradians in 360 degrees.
svn path=/trunk/libcss/; revision=6194
Diffstat (limited to 'src/parse/properties.c')
-rw-r--r--src/parse/properties.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/properties.c b/src/parse/properties.c
index b3c9c1c..31ba6f9 100644
--- a/src/parse/properties.c
+++ b/src/parse/properties.c
@@ -579,7 +579,7 @@ css_error parse_azimuth(css_language *c,
if (length < FMULI(F_360, -1) || length > F_360)
return CSS_INVALID;
} else if (unit == UNIT_GRAD) {
- if (length < FMULI(F_100, -1) || length > F_100)
+ if (length < FMULI(F_400, -1) || length > F_400)
return CSS_INVALID;
} else if (unit == UNIT_RAD) {
if (length < FMULI(F_2PI, -1) || length > F_2PI)