summaryrefslogtreecommitdiff
path: root/render/css.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/css.h')
-rw-r--r--render/css.h9
1 files changed, 8 insertions, 1 deletions
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