summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-12-04 17:47:20 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-12-04 17:47:20 +0000
commitef8a15f3dd5dc483376ac4a9fe5acc5acc1e9122 (patch)
tree167331009bfe0770f1730d312ce5d43ab64f6431 /src
parentb620a4e40f3a81b78fe43902cceff0c5943df509 (diff)
downloadlibcss-ef8a15f3dd5dc483376ac4a9fe5acc5acc1e9122.tar.gz
libcss-ef8a15f3dd5dc483376ac4a9fe5acc5acc1e9122.tar.bz2
Clarify font-family
svn path=/trunk/libcss/; revision=5881
Diffstat (limited to 'src')
-rw-r--r--src/parse/properties.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parse/properties.c b/src/parse/properties.c
index 2ad769d..bcab556 100644
--- a/src/parse/properties.c
+++ b/src/parse/properties.c
@@ -2561,6 +2561,11 @@ css_error parse_font_family(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style **result)
{
+ /* [ IDENT+ | STRING ] [ ','? [ IDENT+ | STRING ] ]*
+ *
+ * In the case of IDENT+, any whitespace between tokens is collapsed to
+ * a single space
+ */
/** \todo font-family */
UNUSED(c);