summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-12-26 16:20:57 +0000
committerJames Bursa <james@netsurf-browser.org>2003-12-26 16:20:57 +0000
commit894703b53b27a25d58d9a6fa77e99d967e9588f6 (patch)
tree73a157f9dead6fe9bac8421f63e9b26066c999fd /render
parenteb7cc625e71a9e761b22bd6fb94d93fbb929304e (diff)
downloadnetsurf-894703b53b27a25d58d9a6fa77e99d967e9588f6.tar.gz
netsurf-894703b53b27a25d58d9a6fa77e99d967e9588f6.tar.bz2
[project @ 2003-12-26 16:20:57 by bursa]
Enable cookies. svn path=/import/netsurf/; revision=443
Diffstat (limited to 'render')
-rw-r--r--render/html.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/render/html.c b/render/html.c
index 73bda84ed..f2bac74a0 100644
--- a/render/html.c
+++ b/render/html.c
@@ -186,7 +186,7 @@ void html_convert_css_callback(content_msg msg, struct content *css,
c->active--;
c->data.html.stylesheet_content[i] = fetchcache(
error, c->url, html_convert_css_callback,
- c, i, css->width, css->height, true, 0, 0);
+ c, i, css->width, css->height, true, 0, 0, false);
if (c->data.html.stylesheet_content[i] != 0 &&
c->data.html.stylesheet_content[i]->status != CONTENT_STATUS_DONE)
c->active++;
@@ -257,7 +257,7 @@ void html_find_stylesheets(struct content *c, xmlNode *head)
#endif
c->url,
html_convert_css_callback,
- c, 0, c->width, c->height, true, 0, 0);
+ c, 0, c->width, c->height, true, 0, 0, false);
assert(c->data.html.stylesheet_content[0] != 0);
if (c->data.html.stylesheet_content[0]->status != CONTENT_STATUS_DONE)
c->active++;
@@ -311,7 +311,7 @@ void html_find_stylesheets(struct content *c, xmlNode *head)
(i + 1) * sizeof(*c->data.html.stylesheet_content));
c->data.html.stylesheet_content[i] = fetchcache(url, c->url,
html_convert_css_callback, c, i,
- c->width, c->height, true, 0, 0);
+ c->width, c->height, true, 0, 0, false);
if (c->data.html.stylesheet_content[i] &&
c->data.html.stylesheet_content[i]->status != CONTENT_STATUS_DONE)
c->active++;
@@ -400,7 +400,7 @@ void html_fetch_object(struct content *c, char *url, struct box *box)
c->data.html.object[i].content = fetchcache(url, c->url,
html_object_callback,
c, i, c->width, c->height,
- true, 0, 0); /* we don't know the object's
+ true, 0, 0, false); /* we don't know the object's
dimensions yet; use
parent's as an estimate */
if (c->data.html.object[i].content) {
@@ -490,7 +490,7 @@ void html_object_callback(content_msg msg, struct content *object,
c->data.html.object[i].url = xstrdup(error);
c->data.html.object[i].content = fetchcache(
error, c->url, html_object_callback,
- c, i, 0, 0, true, 0, 0);
+ c, i, 0, 0, true, 0, 0, false);
if (c->data.html.object[i].content) {
c->active++;
if (c->data.html.object[i].content->status == CONTENT_STATUS_DONE)
@@ -535,7 +535,7 @@ void html_revive(struct content *c, unsigned int width, unsigned int height)
c->data.html.object[i].content = fetchcache(
c->data.html.object[i].url, c->url,
html_object_callback,
- c, i, 0, 0, true, 0, 0);
+ c, i, 0, 0, true, 0, 0, false);
if (c->data.html.object[i].content &&
c->data.html.object[i].content->status != CONTENT_STATUS_DONE)
c->active++;