From 7e7bb2cde575d6ce2c01231b7759fe30c918b400 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Fri, 12 Feb 2021 23:05:56 +0000 Subject: implement the remaining css 3.1 simple predefined counter styles --- src/bytecode/opcodes.h | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'src/bytecode/opcodes.h') diff --git a/src/bytecode/opcodes.h b/src/bytecode/opcodes.h index b74e990..1e561e5 100644 --- a/src/bytecode/opcodes.h +++ b/src/bytecode/opcodes.h @@ -505,7 +505,25 @@ enum op_list_style_type { LIST_STYLE_TYPE_CJK_DECIMAL = 0x0019, LIST_STYLE_TYPE_DEVANAGARI = 0x001a, LIST_STYLE_TYPE_GUJARATI = 0x001b, - LIST_STYLE_TYPE_GURMUKHI = 0x001c + LIST_STYLE_TYPE_GURMUKHI = 0x001c, + LIST_STYLE_TYPE_HEBREW = 0x001d, + LIST_STYLE_TYPE_KANNADA = 0x001e, + LIST_STYLE_TYPE_LAO = 0x001f, + LIST_STYLE_TYPE_MALAYALAM = 0x0020, + LIST_STYLE_TYPE_MONGOLIAN = 0x0021, + LIST_STYLE_TYPE_MYANMAR = 0x0022, + LIST_STYLE_TYPE_ORIYA = 0x0023, + LIST_STYLE_TYPE_PERSIAN = 0x0024, + LIST_STYLE_TYPE_TAMIL = 0x0025, + LIST_STYLE_TYPE_TELUGU = 0x0026, + LIST_STYLE_TYPE_THAI = 0x0027, + LIST_STYLE_TYPE_TIBETAN = 0x0028, + LIST_STYLE_TYPE_CJK_EARTHLY_BRANCH = 0x0029, + LIST_STYLE_TYPE_CJK_HEAVENLY_STEM = 0x002a, + LIST_STYLE_TYPE_HIAGANA = 0x002b, + LIST_STYLE_TYPE_HIAGANA_IROHA = 0x002c, + LIST_STYLE_TYPE_KATAKANA = 0x002d, + LIST_STYLE_TYPE_KATAKANA_IROHA = 0x002e }; enum op_margin { -- cgit v1.2.3