summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-11-20 23:40:26 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-11-20 23:40:26 +0000
commitc3a51e6ebf2d1edcc871d6eb8bb2113172078d4a (patch)
tree4dc9b790f59bd4c3162a1b510549ddee13f08e1d /src
parent249d8fcee6079aeef5bce1d2cfdc25c6454d1f0a (diff)
downloadlibcss-c3a51e6ebf2d1edcc871d6eb8bb2113172078d4a.tar.gz
libcss-c3a51e6ebf2d1edcc871d6eb8bb2113172078d4a.tar.bz2
height
svn path=/trunk/libcss/; revision=5759
Diffstat (limited to 'src')
-rw-r--r--src/parse/css21props.c60
1 files changed, 56 insertions, 4 deletions
diff --git a/src/parse/css21props.c b/src/parse/css21props.c
index 811dbe3..809a2bb 100644
--- a/src/parse/css21props.c
+++ b/src/parse/css21props.c
@@ -1727,10 +1727,62 @@ css_error parse_height(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;
+ uint32_t length = 0;
+ uint32_t unit = 0;
+ uint32_t required_size;
+
+ /* length | percentage | IDENT(auto, inherit) */
+ token = parserutils_vector_peek(vector, *ctx);
+ if (token == NULL)
+ return CSS_INVALID;
+
+ if (token->type == CSS_TOKEN_IDENT &&
+ token->lower.ptr == c->strings[INHERIT]) {
+ parserutils_vector_iterate(vector, ctx);
+ flags = FLAG_INHERIT;
+ } else if (token->type == CSS_TOKEN_IDENT &&
+ token->lower.ptr == c->strings[AUTO]) {
+ parserutils_vector_iterate(vector, ctx);
+ value = HEIGHT_AUTO;
+ } else {
+ error = parse_unit_specifier(c, vector, ctx, &length, &unit);
+ if (error != CSS_OK)
+ return error;
+
+ if (unit & UNIT_ANGLE || unit & UNIT_TIME || unit & UNIT_FREQ)
+ return CSS_INVALID;
+
+ value = HEIGHT_SET;
+ }
+
+ error = parse_important(c, vector, ctx, &flags);
+ if (error != CSS_OK)
+ return error;
+
+ opv = buildOPV(OP_HEIGHT, flags, value);
+
+ required_size = sizeof(opv);
+ if (value == HEIGHT_SET)
+ required_size += sizeof(length) + sizeof(unit);
+
+ /* 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 (value == HEIGHT_SET) {
+ memcpy(((uint8_t *) (*result)->bytecode) + sizeof(opv),
+ &length, sizeof(length));
+ memcpy(((uint8_t *) (*result)->bytecode) + sizeof(opv) +
+ sizeof(length), &unit, sizeof(unit));
+ }
return CSS_OK;
}