summaryrefslogtreecommitdiff
path: root/src/parse/css21.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-10-26 21:42:03 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-10-26 21:42:03 +0000
commitdf44d6ea1cdac2561af3497c8de8f2de49da887b (patch)
tree92d4c0399bb83c1171c3c8fa58ab8068980fa7ca /src/parse/css21.c
parentb9c1187c2b32982b38ac16851902bf86a400b5a3 (diff)
downloadlibcss-df44d6ea1cdac2561af3497c8de8f2de49da887b.tar.gz
libcss-df44d6ea1cdac2561af3497c8de8f2de49da887b.tar.bz2
font-style
svn path=/trunk/libcss/; revision=5643
Diffstat (limited to 'src/parse/css21.c')
-rw-r--r--src/parse/css21.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/parse/css21.c b/src/parse/css21.c
index ecf589c..fe207b6 100644
--- a/src/parse/css21.c
+++ b/src/parse/css21.c
@@ -58,7 +58,7 @@ enum {
TABLE_FOOTER_GROUP, TABLE_ROW, TABLE_COLUMN_GROUP, TABLE_COLUMN,
TABLE_CELL, TABLE_CAPTION, BELOW, LEVEL, ABOVE, HIGHER, LOWER,
SHOW, HIDE, XX_SMALL, X_SMALL, SMALL, LARGE, X_LARGE, XX_LARGE,
- LARGER, SMALLER,
+ LARGER, SMALLER, NORMAL, ITALIC, OBLIQUE,
LAST_KNOWN
};
@@ -231,6 +231,9 @@ static struct {
{ "xx-large", SLEN("xx-large") },
{ "larger", SLEN("larger") },
{ "smaller", SLEN("smaller") },
+ { "normal", SLEN("normal") },
+ { "italic", SLEN("italic") },
+ { "oblique", SLEN("oblique") },
};
typedef struct context_entry {