From bc9c80c2dbf21d805f5372aea3df14d310a1512c Mon Sep 17 00:00:00 2001 From: Caitlin Potter Date: Tue, 10 Sep 2013 17:44:53 +0100 Subject: Add support for parsing the writing-mode property. Thanks to Caitlin Potter. --- src/bytecode/opcodes.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/bytecode') diff --git a/src/bytecode/opcodes.h b/src/bytecode/opcodes.h index a0d38d4..544687a 100644 --- a/src/bytecode/opcodes.h +++ b/src/bytecode/opcodes.h @@ -718,6 +718,12 @@ enum op_word_spacing { WORD_SPACING_NORMAL = 0x0000 }; +enum op_writing_mode { + WRITING_MODE_HORIZONTAL_TB = 0x0000, + WRITING_MODE_VERTICAL_RL = 0x0001, + WRITING_MODE_VERTICAL_LR = 0x0002 +}; + enum op_z_index { Z_INDEX_SET = 0x0080, -- cgit v1.2.3