From 1617f3813486071779fe3ff6c724dcd6ae3f6223 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Wed, 11 Feb 2009 17:46:32 +0000 Subject: Change encoding of font-family Move list-style-position to make room for it. svn path=/trunk/libcss/; revision=6440 --- include/libcss/properties.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'include/libcss/properties.h') 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 { -- cgit v1.2.3