summaryrefslogtreecommitdiff
path: root/test/dump_computed.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-07-15 23:05:02 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-07-15 23:05:02 +0000
commit85f7d81cfb45c8804507f175b1c3a05b717f589c (patch)
treedf6a57e3a9554e8661ef83cea5ed77fd6a4d36e6 /test/dump_computed.h
parent1ebed74cd8be22ff805bffb10f6d1e55f2a9866f (diff)
downloadlibcss-85f7d81cfb45c8804507f175b1c3a05b717f589c.tar.gz
libcss-85f7d81cfb45c8804507f175b1c3a05b717f589c.tar.bz2
Provide accessor for computed value of display assuming static position.
Modify css_computed_display to follow $9.7. svn path=/trunk/libcss/; revision=8568
Diffstat (limited to 'test/dump_computed.h')
-rw-r--r--test/dump_computed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dump_computed.h b/test/dump_computed.h
index 8269b3a..b3423d7 100644
--- a/test/dump_computed.h
+++ b/test/dump_computed.h
@@ -1023,7 +1023,7 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
*len -= wrote;
/* display */
- val = css_computed_display(style);
+ val = css_computed_display_static(style);
switch (val) {
case CSS_DISPLAY_INLINE:
wrote = snprintf(ptr, *len, "display: inline\n");