From e78ea408f3fee74beae600d1edeaa22c863953b9 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Fri, 28 Jun 2002 20:14:04 +0000 Subject: [project @ 2002-06-28 20:14:04 by bursa] Changed float representation in box tree to implement floated tables. svn path=/import/netsurf/; revision=25 --- render/box.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'render/box.h') diff --git a/render/box.h b/render/box.h index 76a3e69ac..1ee923ddf 100644 --- a/render/box.h +++ b/render/box.h @@ -1,5 +1,5 @@ /** - * $Id: box.h,v 1.4 2002/06/26 23:27:30 bursa Exp $ + * $Id: box.h,v 1.5 2002/06/28 20:14:04 bursa Exp $ */ /** @@ -8,7 +8,8 @@ typedef enum { BOX_BLOCK, BOX_INLINE_CONTAINER, BOX_INLINE, - BOX_TABLE, BOX_TABLE_ROW, BOX_TABLE_CELL, BOX_FLOAT + BOX_TABLE, BOX_TABLE_ROW, BOX_TABLE_CELL, + BOX_FLOAT_LEFT, BOX_FLOAT_RIGHT } box_type; struct box { -- cgit v1.2.1