summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-04-15 17:53:00 +0000
committerJames Bursa <james@netsurf-browser.org>2003-04-15 17:53:00 +0000
commit09b1ede5a3fe5c37e34fe1c13780536f30297806 (patch)
tree5bf9a19301354c45deb6fab2e0386b5ca822714f /css
parent63b6455f7365507ce502369b738ecc09e54e25ed (diff)
downloadnetsurf-09b1ede5a3fe5c37e34fe1c13780536f30297806.tar.gz
netsurf-09b1ede5a3fe5c37e34fe1c13780536f30297806.tar.bz2
[project @ 2003-04-15 17:53:00 by bursa]
Inline images and related. svn path=/import/netsurf/; revision=125
Diffstat (limited to 'css')
-rw-r--r--css/css.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/css/css.c b/css/css.c
index d348ad0f3..70e992e15 100644
--- a/css/css.c
+++ b/css/css.c
@@ -1,5 +1,5 @@
/**
- * $Id: css.c,v 1.6 2003/04/09 21:57:09 bursa Exp $
+ * $Id: css.c,v 1.7 2003/04/15 17:53:00 bursa Exp $
*/
#include <assert.h>
@@ -61,7 +61,7 @@ const struct css_style css_empty_style = {
{ CSS_FONT_SIZE_INHERIT, { { 1, CSS_UNIT_EM } } },
CSS_FONT_WEIGHT_INHERIT,
CSS_FONT_STYLE_INHERIT,
- { CSS_HEIGHT_AUTO, { 1, CSS_UNIT_EM } },
+ { CSS_HEIGHT_INHERIT, { 1, CSS_UNIT_EM } },
{ CSS_LINE_HEIGHT_INHERIT, { 1.2 } },
CSS_TEXT_ALIGN_INHERIT,
{ CSS_WIDTH_INHERIT, { { 1, CSS_UNIT_EM } } }
@@ -131,6 +131,7 @@ int css_convert(struct content *c, unsigned int width, unsigned int height)
/* complete fetch of any imported stylesheets */
while (c->active != 0) {
+ LOG(("importing %i from '%s'", c->active, c->url));
fetch_poll();
gui_multitask();
}