summaryrefslogtreecommitdiff
path: root/css/css.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-01-15 22:11:53 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-01-15 22:11:53 +0000
commit1487697cb3d69c8eb86b50b441f4c44fe0a0ff12 (patch)
treec33ccb65fdc3e418c6181e4b2b5efd3f13b6ab40 /css/css.h
parentf0b264670e57d1eefd6f7e297b87cedf38d8be9a (diff)
downloadnetsurf-1487697cb3d69c8eb86b50b441f4c44fe0a0ff12.tar.gz
netsurf-1487697cb3d69c8eb86b50b441f4c44fe0a0ff12.tar.bz2
[project @ 2005-01-15 22:11:53 by rjw]
Background work for CSS counters (CSS 2.1/12.4) svn path=/import/netsurf/; revision=1449
Diffstat (limited to 'css/css.h')
-rw-r--r--css/css.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/css/css.h b/css/css.h
index 6ac08ded3..cc5e9bbd6 100644
--- a/css/css.h
+++ b/css/css.h
@@ -112,7 +112,12 @@ typedef enum {
CSS_VERTICAL_ALIGN_PERCENT,
CSS_VERTICAL_ALIGN_NOT_SET
} css_vertical_align_type;
-
+
+struct css_counter {
+ const char *name;
+ css_list_style_type style;
+ const char *separator; /** NULL for counter() */
+};
/** Representation of a complete CSS 2 style. */
struct css_style {