summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-11-26 23:43:48 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-11-26 23:43:48 +0000
commit0b9e2bbcbd36f8897031b79b49878c22e24dc3e7 (patch)
treeceebfd58bc7eae5ed9d3b37048505e2121b90a06 /src
parent94c40fb372814286df08a857f7f28680f84e6d3f (diff)
downloadlibcss-0b9e2bbcbd36f8897031b79b49878c22e24dc3e7.tar.gz
libcss-0b9e2bbcbd36f8897031b79b49878c22e24dc3e7.tar.bz2
widows
svn path=/trunk/libcss/; revision=5802
Diffstat (limited to 'src')
-rw-r--r--src/parse/css21props.c53
1 files changed, 49 insertions, 4 deletions
diff --git a/src/parse/css21props.c b/src/parse/css21props.c
index 569cce9..82a5d30 100644
--- a/src/parse/css21props.c
+++ b/src/parse/css21props.c
@@ -4176,10 +4176,55 @@ css_error parse_widows(css_css21 *c,
const parserutils_vector *vector, int *ctx,
css_style **result)
{
- UNUSED(c);
- UNUSED(vector);
- UNUSED(ctx);
- UNUSED(result);
+ css_error error;
+ const css_token *token;
+ uint8_t flags = 0;
+ uint16_t value = 0;
+ uint32_t opv;
+ fixed num = 0;
+ uint32_t required_size;
+
+ /* <integer> | IDENT (inherit) */
+ token = parserutils_vector_iterate(vector, ctx);
+ if (token == NULL || (token->type != CSS_TOKEN_IDENT &&
+ token->type != CSS_TOKEN_NUMBER))
+ return CSS_INVALID;
+
+ error = parse_important(c, vector, ctx, &flags);
+ if (error != CSS_OK)
+ return error;
+
+ if (token->lower.ptr == c->strings[INHERIT]) {
+ flags |= FLAG_INHERIT;
+ } else if (token->type == CSS_TOKEN_NUMBER) {
+ size_t consumed = 0;
+ num = number_from_css_string(&token->lower, &consumed);
+ int32_t intpart = FIXTOINT(num);
+ /* Invalid if there are trailing characters or it was a float */
+ if (consumed != token->lower.len || num != intpart)
+ return CSS_INVALID;
+
+ value = WIDOWS_SET;
+ } else
+ return CSS_INVALID;
+
+ opv = buildOPV(OP_WIDOWS, flags, value);
+
+ required_size = sizeof(opv);
+ if ((flags & FLAG_INHERIT) == false && value == WIDOWS_SET)
+ required_size += sizeof(num);
+
+ /* Allocate result */
+ error = css_stylesheet_style_create(c->sheet, required_size, result);
+ if (error != CSS_OK)
+ return error;
+
+ /* Copy the bytecode to it */
+ memcpy((*result)->bytecode, &opv, sizeof(opv));
+ if ((flags & FLAG_INHERIT) == false && value == WIDOWS_SET) {
+ memcpy(((uint8_t *) (*result)->bytecode) + sizeof(opv),
+ &num, sizeof(num));
+ }
return CSS_OK;
}