summaryrefslogtreecommitdiff
path: root/src/bytecode
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 /src/bytecode
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 'src/bytecode')
-rw-r--r--src/bytecode/opcodes.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/bytecode/opcodes.h b/src/bytecode/opcodes.h
index 82bf75f..b74e990 100644
--- a/src/bytecode/opcodes.h
+++ b/src/bytecode/opcodes.h
@@ -491,7 +491,21 @@ enum op_list_style_type {
LIST_STYLE_TYPE_GEORGIAN = 0x000b,
LIST_STYLE_TYPE_LOWER_ALPHA = 0x000c,
LIST_STYLE_TYPE_UPPER_ALPHA = 0x000d,
- LIST_STYLE_TYPE_NONE = 0x000e
+ LIST_STYLE_TYPE_NONE = 0x000e,
+ LIST_STYLE_TYPE_BINARY = 0x000f,
+ LIST_STYLE_TYPE_OCTAL = 0x0010,
+ LIST_STYLE_TYPE_LOWER_HEXADECIMAL = 0x0011,
+ LIST_STYLE_TYPE_UPPER_HEXADECIMAL = 0x0012,
+ LIST_STYLE_TYPE_ARABIC_INDIC = 0x0013,
+ LIST_STYLE_TYPE_LOWER_ARMENIAN = 0x0014,
+ LIST_STYLE_TYPE_UPPER_ARMENIAN = 0x0015,
+ LIST_STYLE_TYPE_BENGALI = 0x0016,
+ LIST_STYLE_TYPE_CAMBODIAN = 0x0017,
+ LIST_STYLE_TYPE_KHMER = 0x0018,
+ LIST_STYLE_TYPE_CJK_DECIMAL = 0x0019,
+ LIST_STYLE_TYPE_DEVANAGARI = 0x001a,
+ LIST_STYLE_TYPE_GUJARATI = 0x001b,
+ LIST_STYLE_TYPE_GURMUKHI = 0x001c
};
enum op_margin {