summaryrefslogtreecommitdiff
path: root/src/select/properties.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-06-29 15:47:32 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-06-29 15:47:32 +0000
commit98e5057daaccf7f8903fac0313a43c1d46c99301 (patch)
treec3124ea93eef6821421c0670a4cb51ceeb748bbf /src/select/properties.c
parentf1af9630eb757a101982f336d7750427930938dd (diff)
downloadlibcss-98e5057daaccf7f8903fac0313a43c1d46c99301.tar.gz
libcss-98e5057daaccf7f8903fac0313a43c1d46c99301.tar.bz2
Fix setting of computed display: none
svn path=/trunk/libcss/; revision=8159
Diffstat (limited to 'src/select/properties.c')
-rw-r--r--src/select/properties.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select/properties.c b/src/select/properties.c
index cabac2b..2d950be 100644
--- a/src/select/properties.c
+++ b/src/select/properties.c
@@ -1934,7 +1934,7 @@ css_error cascade_display(uint32_t opv, css_style *style,
value = CSS_DISPLAY_TABLE_CAPTION;
break;
case DISPLAY_NONE:
- value = DISPLAY_NONE;
+ value = CSS_DISPLAY_NONE;
break;
}
}