summaryrefslogtreecommitdiff
path: root/render/box.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2008-12-21 15:51:23 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2008-12-21 15:51:23 +0000
commit6a4d4489f55f24ed0e446bac1e661a78513cc0a6 (patch)
tree0ef78fd40ac2b60f77bd0f96789b9e655dc55c2b /render/box.c
parent5bff3e3287501d494536b074a5c540c5be2e94bd (diff)
downloadnetsurf-6a4d4489f55f24ed0e446bac1e661a78513cc0a6.tar.gz
netsurf-6a4d4489f55f24ed0e446bac1e661a78513cc0a6.tar.bz2
Rewrite inline rendering. Fixes issues with borders,
background colour and background image display when inlines have margins and paddings. Support for background position on inlines. Fix BOX_INLINE descendant calculation to include BOX_INLINE_END. svn path=/trunk/netsurf/; revision=5916
Diffstat (limited to 'render/box.c')
-rw-r--r--render/box.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/render/box.c b/render/box.c
index 023c444cc..da82bf3f0 100644
--- a/render/box.c
+++ b/render/box.c
@@ -93,6 +93,7 @@ struct box * box_create(struct css_style *style,
box->columns = 1;
box->rows = 1;
box->start_column = 0;
+ box->inline_new_line = false;
box->printed = false;
box->next = NULL;
box->prev = NULL;