From dd74dbf4b1a8d27cb49855f067f65b722d65bd42 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 9 Feb 2021 23:38:11 +0000 Subject: implement the firt half of the css 3.1 simple predefined counter styles --- src/bytecode/opcodes.h | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src/bytecode/opcodes.h') 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 { -- cgit v1.2.3