summaryrefslogtreecommitdiff
path: root/docs/Bytecode
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-06-01 18:32:37 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2014-06-01 18:32:37 +0100
commitc6d7f24987a90bc61e408c4249a6a212276b4174 (patch)
tree75a3f5478618e0e583db6f168193e7645c012dda /docs/Bytecode
parent89a4d061a46490d5fad3792a565a1a0114c400e0 (diff)
downloadlibcss-c6d7f24987a90bc61e408c4249a6a212276b4174.tar.gz
libcss-c6d7f24987a90bc61e408c4249a6a212276b4174.tar.bz2
Add support for CSS3 overflow-x and overflow-y properties.
Now, overflow is a shorthand property setting both overflow-x and overflow-y. The getter for the computed overflow has been removed, and replaced with two for overflow-x and overflow-y.
Diffstat (limited to 'docs/Bytecode')
-rw-r--r--docs/Bytecode11
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/Bytecode b/docs/Bytecode
index b4154b5..3f53d71 100644
--- a/docs/Bytecode
+++ b/docs/Bytecode
@@ -739,7 +739,7 @@ Opcodes
0000010 => thick,
other => rffe.
-3c - overflow
+3c - overflow-x
<value> (14bits) :
0 => visible,
1 => hidden,
@@ -1241,6 +1241,13 @@ Opcodes
00000010 => vertical-lr,
other => Reserved for future expansion.
+70 - overflow-y
+ <value> (14bits) :
+ 0 => visible,
+ 1 => hidden,
+ 2 => scroll,
+ 3 => auto,
+ other => Reserved for future expansion.
-70-3ff - Reserved for future expansion.
+71-3ff - Reserved for future expansion.