summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/data/select/tests1.dat2
-rw-r--r--test/dump_computed.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/data/select/tests1.dat b/test/data/select/tests1.dat
index 34ae7bf..9d1a4cb 100644
--- a/test/data/select/tests1.dat
+++ b/test/data/select/tests1.dat
@@ -341,7 +341,7 @@ counter-increment: none
counter-reset: none
cursor: auto
direction: ltr
-display: block
+display: inline
empty-cells: show
float: none
font-family: sans-serif
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");