summaryrefslogtreecommitdiff
path: root/src/parse/css21.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-10-26 21:34:20 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-10-26 21:34:20 +0000
commitb9c1187c2b32982b38ac16851902bf86a400b5a3 (patch)
treea091ff96f2942a1704e54a22dac070687be123a2 /src/parse/css21.c
parent25fe7575eb1d43b3906ca5ccee12225c0d6d65f9 (diff)
downloadlibcss-b9c1187c2b32982b38ac16851902bf86a400b5a3.tar.gz
libcss-b9c1187c2b32982b38ac16851902bf86a400b5a3.tar.bz2
font-size
svn path=/trunk/libcss/; revision=5642
Diffstat (limited to 'src/parse/css21.c')
-rw-r--r--src/parse/css21.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/parse/css21.c b/src/parse/css21.c
index 8d25b1e..ecf589c 100644
--- a/src/parse/css21.c
+++ b/src/parse/css21.c
@@ -57,7 +57,8 @@ enum {
INLINE_BLOCK, TABLE, INLINE_TABLE, TABLE_ROW_GROUP, TABLE_HEADER_GROUP,
TABLE_FOOTER_GROUP, TABLE_ROW, TABLE_COLUMN_GROUP, TABLE_COLUMN,
TABLE_CELL, TABLE_CAPTION, BELOW, LEVEL, ABOVE, HIGHER, LOWER,
- SHOW, HIDE,
+ SHOW, HIDE, XX_SMALL, X_SMALL, SMALL, LARGE, X_LARGE, XX_LARGE,
+ LARGER, SMALLER,
LAST_KNOWN
};
@@ -222,6 +223,14 @@ static struct {
{ "lower", SLEN("lower") },
{ "show", SLEN("show") },
{ "hide", SLEN("hide") },
+ { "xx-small", SLEN("xx-small") },
+ { "x-small", SLEN("x-small") },
+ { "small", SLEN("small") },
+ { "large", SLEN("large") },
+ { "x-large", SLEN("x-large") },
+ { "xx-large", SLEN("xx-large") },
+ { "larger", SLEN("larger") },
+ { "smaller", SLEN("smaller") },
};
typedef struct context_entry {