summaryrefslogtreecommitdiff
path: root/include/libcss/properties.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-11 17:46:32 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-11 17:46:32 +0000
commit1617f3813486071779fe3ff6c724dcd6ae3f6223 (patch)
tree2692d0d051773ef6f9a81d93caf838c7074654f0 /include/libcss/properties.h
parent95106ec57637a13990f644f2a0c574164ac9a20a (diff)
downloadlibcss-1617f3813486071779fe3ff6c724dcd6ae3f6223.tar.gz
libcss-1617f3813486071779fe3ff6c724dcd6ae3f6223.tar.bz2
Change encoding of font-family
Move list-style-position to make room for it. svn path=/trunk/libcss/; revision=6440
Diffstat (limited to 'include/libcss/properties.h')
-rw-r--r--include/libcss/properties.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index 6d12c14..1d0dd72 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -192,7 +192,13 @@ enum css_float {
enum css_font_family {
CSS_FONT_FAMILY_INHERIT = 0x0,
- CSS_FONT_FAMILY_SET = 0x1
+ /* Named fonts exist if pointer is non-NULL */
+ CSS_FONT_FAMILY_SERIF = 0x1,
+ CSS_FONT_FAMILY_SANS_SERIF = 0x2,
+ CSS_FONT_FAMILY_CURSIVE = 0x3,
+ CSS_FONT_FAMILY_FANTASY = 0x4,
+ CSS_FONT_FAMILY_MONOSPACE = 0x5,
+ CSS_FONT_FAMILY_DEFAULT = 0x6
};
enum css_font_size {