summaryrefslogtreecommitdiff
path: root/include/libcss
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2021-02-09 23:38:11 +0000
committerVincent Sanders <vince@kyllikki.org>2021-02-09 23:38:11 +0000
commitdd74dbf4b1a8d27cb49855f067f65b722d65bd42 (patch)
treeaede14fcd9c91f869aa68e8347b62c9e08c0b12e /include/libcss
parent3ccff93d3a494b9303a1cc55c4075ef0c59eaf4f (diff)
downloadlibcss-dd74dbf4b1a8d27cb49855f067f65b722d65bd42.tar.gz
libcss-dd74dbf4b1a8d27cb49855f067f65b722d65bd42.tar.bz2
implement the firt half of the css 3.1 simple predefined counter styles
Diffstat (limited to 'include/libcss')
-rw-r--r--include/libcss/properties.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index 577bed0..6f8a51c 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -606,7 +606,22 @@ enum css_list_style_type_e {
CSS_LIST_STYLE_TYPE_GEORGIAN = 0xc,
CSS_LIST_STYLE_TYPE_LOWER_ALPHA = 0xd,
CSS_LIST_STYLE_TYPE_UPPER_ALPHA = 0xe,
- CSS_LIST_STYLE_TYPE_NONE = 0xf
+ CSS_LIST_STYLE_TYPE_NONE = 0xf,
+ CSS_LIST_STYLE_TYPE_BINARY = 0x10,
+ CSS_LIST_STYLE_TYPE_OCTAL = 0x11,
+ CSS_LIST_STYLE_TYPE_LOWER_HEXADECIMAL = 0x12,
+ CSS_LIST_STYLE_TYPE_UPPER_HEXADECIMAL = 0x13,
+ CSS_LIST_STYLE_TYPE_ARABIC_INDIC = 0x14,
+ CSS_LIST_STYLE_TYPE_LOWER_ARMENIAN = 0x15,
+ CSS_LIST_STYLE_TYPE_UPPER_ARMENIAN = 0x16,
+ CSS_LIST_STYLE_TYPE_BENGALI = 0x17,
+ CSS_LIST_STYLE_TYPE_CAMBODIAN = 0x18,
+ CSS_LIST_STYLE_TYPE_KHMER = 0x19,
+ CSS_LIST_STYLE_TYPE_CJK_DECIMAL = 0x1a,
+ CSS_LIST_STYLE_TYPE_DEVANAGARI = 0x1b,
+ CSS_LIST_STYLE_TYPE_GUJARATI = 0x1c,
+ CSS_LIST_STYLE_TYPE_GURMUKHI = 0x1d
+
};
enum css_margin_e {