summaryrefslogtreecommitdiff
path: root/src/parse/css21.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-11-25 02:04:52 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-11-25 02:04:52 +0000
commitb1146a417a2f0b5d57436c7e4f9345eff122b8e1 (patch)
tree95edb76deb1a59006b80ba18715afe559750d332 /src/parse/css21.c
parente8a6576c49abe7386a595201cf9d613de950cccb (diff)
downloadlibcss-b1146a417a2f0b5d57436c7e4f9345eff122b8e1.tar.gz
libcss-b1146a417a2f0b5d57436c7e4f9345eff122b8e1.tar.bz2
list-style-type.
Apparently, upper-greek doesn't exist, so remove it from the bytecode. svn path=/trunk/libcss/; revision=5769
Diffstat (limited to 'src/parse/css21.c')
-rw-r--r--src/parse/css21.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/parse/css21.c b/src/parse/css21.c
index 7f10fca..35a6aee 100644
--- a/src/parse/css21.c
+++ b/src/parse/css21.c
@@ -59,7 +59,9 @@ enum {
TABLE_CELL, TABLE_CAPTION, BELOW, LEVEL, ABOVE, HIGHER, LOWER,
SHOW, HIDE, XX_SMALL, X_SMALL, SMALL, LARGE, X_LARGE, XX_LARGE,
LARGER, SMALLER, NORMAL, ITALIC, OBLIQUE, SMALL_CAPS, BOLD, BOLDER,
- LIGHTER, INSIDE, OUTSIDE,
+ 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,
LAST_KNOWN
};
@@ -241,6 +243,20 @@ static struct {
{ "lighter", SLEN("lighter") },
{ "inside", SLEN("inside") },
{ "outside", SLEN("outside") },
+ { "disc", SLEN("disc") },
+ { "circle", SLEN("circle") },
+ { "square", SLEN("square") },
+ { "decimal", SLEN("decimal") },
+ { "decimal-leading-zero", SLEN("decimal-leading-zero") },
+ { "lower-roman", SLEN("lower-roman") },
+ { "upper-roman", SLEN("upper-roman") },
+ { "lower-greek", SLEN("lower-greek") },
+ { "lower-latin", SLEN("lower-latin") },
+ { "upper-latin", SLEN("upper-latin") },
+ { "armenian", SLEN("armenian") },
+ { "georgian", SLEN("georgian") },
+ { "lower-alpha", SLEN("lower-alpha") },
+ { "upper-alpha", SLEN("upper-alpha") },
};
typedef struct context_entry {