summaryrefslogtreecommitdiff
path: root/include/libcss/properties.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 21:52:08 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 21:52:08 +0000
commitb1692363b809dfe3776866e4319b7a659ca159a4 (patch)
treedfb8be075e5d91b0c1db6577e073d51bcfa273ba /include/libcss/properties.h
parent5429e0ccc289a4538f81fcde0495d27f0cb7a758 (diff)
downloadlibcss-b1692363b809dfe3776866e4319b7a659ca159a4.tar.gz
Finally, a representation of a computed content property.
svn path=/trunk/libcss/; revision=6515
Diffstat (limited to 'include/libcss/properties.h')
-rw-r--r--include/libcss/properties.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index bb685e0..6e7efa8 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -110,10 +110,12 @@ enum css_color {
CSS_COLOR_COLOR = 0x1
};
-/** \todo content
enum css_content {
+ CSS_CONTENT_INHERIT = 0x0,
+ CSS_CONTENT_NONE = 0x1,
+ CSS_CONTENT_NORMAL = 0x2,
+ CSS_CONTENT_SET = 0x3
};
-*/
enum css_counter_increment {
CSS_COUNTER_INCREMENT_INHERIT = 0x0,