From 0a5d2d0dafe1ab811f02511f298953d06ccfeb9f Mon Sep 17 00:00:00 2001 From: James Bursa Date: Fri, 21 Jun 2002 18:16:24 +0000 Subject: [project @ 2002-06-21 18:16:24 by bursa] Implemented clear, fixed inline / float bugs, eliminated many compiler warnings. svn path=/import/netsurf/; revision=22 --- render/css.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'render/css.h') diff --git a/render/css.h b/render/css.h index b1429e33e..5869ad832 100644 --- a/render/css.h +++ b/render/css.h @@ -1,5 +1,5 @@ /** - * $Id: css.h,v 1.4 2002/06/19 15:17:45 bursa Exp $ + * $Id: css.h,v 1.5 2002/06/21 18:16:24 bursa Exp $ */ #include "css_enum.h" @@ -17,6 +17,7 @@ struct css_length { }; struct css_style { + css_clear clear; css_display display; css_float float_; @@ -26,14 +27,15 @@ struct css_style { CSS_FONT_SIZE_LENGTH, CSS_FONT_SIZE_PERCENT } size; union { - float absolute; struct css_length length; + float absolute; float percent; } value; } font_size; struct { - enum { CSS_HEIGHT_AUTO, + enum { CSS_HEIGHT_INHERIT, + CSS_HEIGHT_AUTO, CSS_HEIGHT_LENGTH } height; struct css_length length; } height; -- cgit v1.2.3