From ed0b3a8c9d3549fb0a66372d4bbd3566138c2a06 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 27 Apr 2017 10:56:03 +0100 Subject: Parsing: Add support for parsing the CSS3 box-sizing property. --- src/bytecode/opcodes.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/bytecode') diff --git a/src/bytecode/opcodes.h b/src/bytecode/opcodes.h index 4f80142..64ea482 100644 --- a/src/bytecode/opcodes.h +++ b/src/bytecode/opcodes.h @@ -103,6 +103,11 @@ enum op_bottom { BOTTOM_AUTO = 0x0000 }; +enum op_box_sizing { + BOX_SIZING_CONTENT_BOX = 0x0000, + BOX_SIZING_BORDER_BOX = 0x0001 +}; + enum op_break_after { BREAK_AFTER_AUTO = 0x0000, BREAK_AFTER_ALWAYS = 0x0001, -- cgit v1.2.3