summaryrefslogtreecommitdiff
path: root/src/parse/css21.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-11-25 19:02:51 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-11-25 19:02:51 +0000
commit131f35a6bc639962fdc02d0f7f8e15cda637621e (patch)
treecce8fce38e7e1f496fc7de5eb25dd9995b151a82 /src/parse/css21.c
parent804356284adc96b004a5d12b1c2a6f9026161e02 (diff)
downloadlibcss-131f35a6bc639962fdc02d0f7f8e15cda637621e.tar.gz
libcss-131f35a6bc639962fdc02d0f7f8e15cda637621e.tar.bz2
max-height
max-width min-height min-width orphans outline-color outline-style TODO: fix all instances of the creation of bytecode with parameters. Currently, they only consult value to determine if there are additional parameters. This means that, in the case of inherit and the default value being one which takes parameters, spurious space is allocated in the bytecode. svn path=/trunk/libcss/; revision=5771
Diffstat (limited to 'src/parse/css21.c')
-rw-r--r--src/parse/css21.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parse/css21.c b/src/parse/css21.c
index 35a6aee..c3dbae1 100644
--- a/src/parse/css21.c
+++ b/src/parse/css21.c
@@ -62,6 +62,7 @@ enum {
LIGHTER, INSIDE, OUTSIDE, DISC, CIRCLE, SQUARE, DECIMAL,
DECIMAL_LEADING_ZERO, LOWER_ROMAN, UPPER_ROMAN, LOWER_GREEK,
LOWER_LATIN, UPPER_LATIN, ARMENIAN, GEORGIAN, LOWER_ALPHA, UPPER_ALPHA,
+ INVERT,
LAST_KNOWN
};
@@ -257,6 +258,7 @@ static struct {
{ "georgian", SLEN("georgian") },
{ "lower-alpha", SLEN("lower-alpha") },
{ "upper-alpha", SLEN("upper-alpha") },
+ { "invert", SLEN("invert") },
};
typedef struct context_entry {