summaryrefslogtreecommitdiff
path: root/source/html/css-parse.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-11-26 02:47:36 +0100
committerTor Andersson <tor.andersson@artifex.com>2014-12-03 12:25:52 +0100
commit1d2d217346c246f7283a1274bb7313e41084337b (patch)
treeae4635dc341e2b20e53a08d1018fc00eab944a15 /source/html/css-parse.c
parenta27f2e924f7c8d55fa62b89833c61621a9ca1b87 (diff)
downloadmupdf-1d2d217346c246f7283a1274bb7313e41084337b.tar.xz
html: Namespace prefix CSS functions.
Diffstat (limited to 'source/html/css-parse.c')
-rw-r--r--source/html/css-parse.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/source/html/css-parse.c b/source/html/css-parse.c
index d4aa39ec..35d11a1d 100644
--- a/source/html/css-parse.c
+++ b/source/html/css-parse.c
@@ -373,7 +373,7 @@ static struct value *parse_value(struct lexbuf *buf)
if (buf->lookahead == CSS_KEYWORD)
{
- v = new_value(CSS_KEYWORD, buf->string);
+ v = fz_new_css_value(buf->ctx, CSS_KEYWORD, buf->string);
next(buf);
if (accept(buf, '('))
@@ -394,15 +394,15 @@ static struct value *parse_value(struct lexbuf *buf)
case CSS_STRING:
case CSS_COLOR:
case CSS_URI:
- v = new_value(buf->lookahead, buf->string);
+ v = fz_new_css_value(buf->ctx, buf->lookahead, buf->string);
next(buf);
return v;
}
if (accept(buf, ','))
- return new_value(',', ",");
+ return fz_new_css_value(buf->ctx, ',', ",");
if (accept(buf, '/'))
- return new_value('/', "/");
+ return fz_new_css_value(buf->ctx, '/', "/");
fz_throw(buf->ctx, FZ_ERROR_GENERIC, "syntax error: expected value");
}
@@ -431,7 +431,7 @@ static struct property *parse_declaration(struct lexbuf *buf)
if (buf->lookahead != CSS_KEYWORD)
fz_throw(buf->ctx, FZ_ERROR_GENERIC, "syntax error: expected keyword in property");
- p = new_property(buf->string, NULL, 0);
+ p = fz_new_css_property(buf->ctx, buf->string, NULL, 0);
next(buf);
expect(buf, ':');
@@ -487,7 +487,7 @@ static struct condition *parse_condition(struct lexbuf *buf)
{
if (buf->lookahead != CSS_KEYWORD)
fz_throw(buf->ctx, FZ_ERROR_GENERIC, "syntax error: expected keyword after ':'");
- c = new_condition(':', "pseudo", buf->string);
+ c = fz_new_css_condition(buf->ctx, ':', "pseudo", buf->string);
next(buf);
return c;
}
@@ -496,7 +496,7 @@ static struct condition *parse_condition(struct lexbuf *buf)
{
if (buf->lookahead != CSS_KEYWORD)
fz_throw(buf->ctx, FZ_ERROR_GENERIC, "syntax error: expected keyword after '.'");
- c = new_condition('.', "class", buf->string);
+ c = fz_new_css_condition(buf->ctx, '.', "class", buf->string);
next(buf);
return c;
}
@@ -505,7 +505,7 @@ static struct condition *parse_condition(struct lexbuf *buf)
{
if (buf->lookahead != CSS_KEYWORD)
fz_throw(buf->ctx, FZ_ERROR_GENERIC, "syntax error: expected keyword after '#'");
- c = new_condition('#', "id", buf->string);
+ c = fz_new_css_condition(buf->ctx, '#', "id", buf->string);
next(buf);
return c;
}
@@ -515,7 +515,7 @@ static struct condition *parse_condition(struct lexbuf *buf)
if (buf->lookahead != CSS_KEYWORD)
fz_throw(buf->ctx, FZ_ERROR_GENERIC, "syntax error: expected keyword after '['");
- c = new_condition('[', buf->string, NULL);
+ c = fz_new_css_condition(buf->ctx, '[', buf->string, NULL);
next(buf);
if (accept(buf, '='))
@@ -562,14 +562,14 @@ static struct selector *parse_simple_selector(struct lexbuf *buf)
if (accept(buf, '*'))
{
- s = new_selector(NULL);
+ s = fz_new_css_selector(buf->ctx, NULL);
if (iscond(buf->lookahead))
s->cond = parse_condition_list(buf);
return s;
}
else if (buf->lookahead == CSS_KEYWORD)
{
- s = new_selector(buf->string);
+ s = fz_new_css_selector(buf->ctx, buf->string);
next(buf);
if (iscond(buf->lookahead))
s->cond = parse_condition_list(buf);
@@ -577,7 +577,7 @@ static struct selector *parse_simple_selector(struct lexbuf *buf)
}
else if (iscond(buf->lookahead))
{
- s = new_selector(NULL);
+ s = fz_new_css_selector(buf->ctx, NULL);
s->cond = parse_condition_list(buf);
return s;
}
@@ -593,7 +593,7 @@ static struct selector *parse_adjacent_selector(struct lexbuf *buf)
if (accept(buf, '+'))
{
b = parse_adjacent_selector(buf);
- s = new_selector(NULL);
+ s = fz_new_css_selector(buf->ctx, NULL);
s->combine = '+';
s->left = a;
s->right = b;
@@ -610,7 +610,7 @@ static struct selector *parse_child_selector(struct lexbuf *buf)
if (accept(buf, '>'))
{
b = parse_child_selector(buf);
- s = new_selector(NULL);
+ s = fz_new_css_selector(buf->ctx, NULL);
s->combine = '>';
s->left = a;
s->right = b;
@@ -627,7 +627,7 @@ static struct selector *parse_descendant_selector(struct lexbuf *buf)
if (buf->lookahead != ',' && buf->lookahead != '{' && buf->lookahead != EOF)
{
b = parse_descendant_selector(buf);
- s = new_selector(NULL);
+ s = fz_new_css_selector(buf->ctx, NULL);
s->combine = ' ';
s->left = a;
s->right = b;
@@ -657,7 +657,7 @@ static struct rule *parse_rule(struct lexbuf *buf)
expect(buf, '{');
p = parse_declaration_list(buf);
expect(buf, '}');
- return new_rule(s, p);
+ return fz_new_css_rule(buf->ctx, s, p);
}
static void parse_media_list(struct lexbuf *buf)