From 40157e06e218b7c29f3191ac10c6eb9ea92f666e Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 26 Oct 2008 15:12:01 +0000 Subject: border-collapse {top,right,bottom,left} s/parse_length_specifier/parse_unit_specifier/g Fix error propagation in some cases. svn path=/trunk/libcss/; revision=5634 --- src/bytecode/bytecode.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/bytecode') diff --git a/src/bytecode/bytecode.h b/src/bytecode/bytecode.h index 86019d1..6c320a1 100644 --- a/src/bytecode/bytecode.h +++ b/src/bytecode/bytecode.h @@ -117,13 +117,16 @@ typedef enum unit { UNIT_PCT = (1 << 8), + UNIT_ANGLE = (1 << 9), UNIT_DEG = (1 << 9) + 0, UNIT_GRAD = (1 << 9) + 1, UNIT_RAD = (1 << 9) + 2, + UNIT_TIME = (1 << 10), UNIT_MS = (1 << 10) + 0, UNIT_S = (1 << 10) + 1, + UNIT_FREQ = (1 << 11), UNIT_HZ = (1 << 11) + 0, UNIT_KHZ = (1 << 11) + 1 } unit; -- cgit v1.2.3