summaryrefslogtreecommitdiff
path: root/src/bytecode/bytecode.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-10-26 15:12:01 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-10-26 15:12:01 +0000
commit40157e06e218b7c29f3191ac10c6eb9ea92f666e (patch)
tree706d2a39e6e679ced67c380932ec91da65623b00 /src/bytecode/bytecode.h
parente81921703d0a93b89df7d79368c660370a2bcc07 (diff)
downloadlibcss-40157e06e218b7c29f3191ac10c6eb9ea92f666e.tar.gz
libcss-40157e06e218b7c29f3191ac10c6eb9ea92f666e.tar.bz2
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
Diffstat (limited to 'src/bytecode/bytecode.h')
-rw-r--r--src/bytecode/bytecode.h3
1 files changed, 3 insertions, 0 deletions
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;