summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-04-18 15:19:53 +0000
committerJames Bursa <james@netsurf-browser.org>2004-04-18 15:19:53 +0000
commitdc937fe9baf0c883a907ff1872510e383c8f76ef (patch)
tree33bd3cccd352cbaa95e2f7638a5a2f4190cfba93 /render/box.h
parentdc510627d9044edb7b1f10cd7b1ac6fb491924b1 (diff)
downloadnetsurf-dc937fe9baf0c883a907ff1872510e383c8f76ef.tar.gz
netsurf-dc937fe9baf0c883a907ff1872510e383c8f76ef.tar.bz2
[project @ 2004-04-18 15:19:53 by bursa]
Implement <br> properly by adding BOX_BR; fix box tree normalisation bugs. svn path=/import/netsurf/; revision=791
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/render/box.h b/render/box.h
index 488b27ac8..d807e430c 100644
--- a/render/box.h
+++ b/render/box.h
@@ -61,7 +61,7 @@
* \code
* parent permitted child nodes
* BLOCK, INLINE_BLOCK BLOCK, INLINE_CONTAINER, TABLE
- * INLINE_CONTAINER INLINE, INLINE_BLOCK, FLOAT_LEFT, FLOAT_RIGHT
+ * INLINE_CONTAINER INLINE, INLINE_BLOCK, FLOAT_LEFT, FLOAT_RIGHT, BR
* INLINE none
* TABLE at least 1 TABLE_ROW_GROUP
* TABLE_ROW_GROUP at least 1 TABLE_ROW
@@ -87,7 +87,7 @@ typedef enum {
BOX_TABLE, BOX_TABLE_ROW, BOX_TABLE_CELL,
BOX_TABLE_ROW_GROUP,
BOX_FLOAT_LEFT, BOX_FLOAT_RIGHT,
- BOX_INLINE_BLOCK
+ BOX_INLINE_BLOCK, BOX_BR
} box_type;
struct column {