summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/render/html.c b/render/html.c
index cdd78e7d4..e7d2c4865 100644
--- a/render/html.c
+++ b/render/html.c
@@ -165,7 +165,6 @@ static void html_box_convert_done(html_content *c, bool success)
content_set_done(&c->base);
}
- html_set_status(c, "");
dom_node_unref(html);
}
@@ -1350,7 +1349,6 @@ static void html_stop(struct content *c)
/* If there are no further active fetches and we're still
* in the READY state, transition to the DONE state. */
if (c->status == CONTENT_STATUS_READY && c->active == 0) {
- html_set_status(htmlc, "");
content_set_done(c);
}
@@ -1606,15 +1604,6 @@ static nserror html_clone(const struct content *old, struct content **newc)
return true;
}
-/**
- * Set the content status.
- */
-
-void html_set_status(html_content *c, const char *extra)
-{
- content_set_status(&c->base, extra);
-}
-
/**
* Handle a window containing a CONTENT_HTML being opened.