summaryrefslogtreecommitdiff
path: root/docs/API-ABI-Changes
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/API-ABI-Changes
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/API-ABI-Changes')
-rw-r--r--docs/API-ABI-Changes21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/API-ABI-Changes b/docs/API-ABI-Changes
index c70c6f0..0216234 100644
--- a/docs/API-ABI-Changes
+++ b/docs/API-ABI-Changes
@@ -35,3 +35,24 @@ LibCSS 0.2.0 --> LibCSS 0.3.0
get_libcss_node_data
New selection handler function used to retrieve private cache belonging
to libcss from document element nodes.
+
+
+LibCSS 0.3.0 --> LibCSS 0.4.0
+-----------------------------
+
+ The API is changed.
+
+ Due to the change from CSS2 overflow to CSS3 overflow properties, the
+ computed style access functions for overflow properties have changed.
+ The overflow property is removed. Added are overflow-x and overflow-y
+ properties. (The overflow shorthand property now sets overflow-x and
+ overflow-y.)
+
+ This change affects the following functions:
+
+ Removed from include/libcss/computed.h -- css_computed_overflow()
+
+ Added to include/libcss/computed.h -- css_computed_overflow_x()
+
+ Added to include/libcss/computed.h -- css_computed_overflow_y()
+