summaryrefslogtreecommitdiff
path: root/include/libcss
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-05 01:52:49 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-05 01:52:49 +0000
commit2caf5a7505210eadd95cd35ad34600275aafcd65 (patch)
tree818e422fe4431b51e9e2ca16f3cb35e8d5143b74 /include/libcss
parent1c4fd1ca067c6a0917e891b2bfb8fc0a20b1d7eb (diff)
downloadlibcss-2caf5a7505210eadd95cd35ad34600275aafcd65.tar.gz
libcss-2caf5a7505210eadd95cd35ad34600275aafcd65.tar.bz2
z-index is a signed int, not a css_fixed value.
Compose width, word-spacing and z-index. svn path=/trunk/libcss/; revision=6709
Diffstat (limited to 'include/libcss')
-rw-r--r--include/libcss/computed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libcss/computed.h b/include/libcss/computed.h
index c0cbdfe..2705721 100644
--- a/include/libcss/computed.h
+++ b/include/libcss/computed.h
@@ -315,7 +315,7 @@ struct css_computed_style {
css_fixed width;
- css_fixed z_index;
+ int32_t z_index;
lwc_string **font_family;