From 1a1c493d7442e3530a7a258e9aba2273a37ffb5d Mon Sep 17 00:00:00 2001 From: James Bursa Date: Sun, 11 Aug 2002 23:02:49 +0000 Subject: [project @ 2002-08-11 23:02:25 by bursa] [monkeyson] Add font-weight and font-style. svn path=/import/netsurf/; revision=29 --- render/css.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'render/css.h') diff --git a/render/css.h b/render/css.h index c01d20ada..d03073fc5 100644 --- a/render/css.h +++ b/render/css.h @@ -1,7 +1,10 @@ /** - * $Id: css.h,v 1.6 2002/06/26 23:27:30 bursa Exp $ + * $Id: css.h,v 1.7 2002/08/11 23:02:25 bursa Exp $ */ +#ifndef _NETSURF_RENDER_CSS_H_ +#define _NETSURF_RENDER_CSS_H_ + #include "css_enum.h" /** @@ -33,6 +36,9 @@ struct css_style { } value; } font_size; + css_font_weight font_weight; + css_font_style font_style; + struct { enum { CSS_HEIGHT_INHERIT, CSS_HEIGHT_AUTO, @@ -91,3 +97,4 @@ void css_dump_stylesheet(const struct css_stylesheet * stylesheet); void css_cascade(struct css_style * const style, const struct css_style * const apply); void css_parse_property_list(struct css_style * style, char * str); +#endif -- cgit v1.2.3