Author: jmb
Date: Sat Jan 17 18:46:07 2009
New Revision: 6128
URL: http://source.netsurf-browser.org?rev=6128&view=rev
Log:
Fix pitch
Modified:
trunk/libcss/src/parse/properties.c
Modified: trunk/libcss/src/parse/properties.c
URL:
http://source.netsurf-browser.org/trunk/libcss/src/parse/properties.c?rev=6128&r1=6127&r2=6128&view=diff
==============================================================================
--- trunk/libcss/src/parse/properties.c (original)
+++ trunk/libcss/src/parse/properties.c Sat Jan 17 18:46:07 2009
@@ -4436,18 +4436,23 @@
flags = FLAG_INHERIT;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[X_LOW]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_X_LOW;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[LOW]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_LOW;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[MEDIUM]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_MEDIUM;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[HIGH]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_HIGH;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[X_HIGH]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_X_HIGH;
} else {
error = parse_unit_specifier(c, vector, ctx, UNIT_HZ,
_______________________________________________
netsurf-commits mailing list
[email protected]
http://vlists.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org