summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/render/html.c b/render/html.c
index e38a4ba99..2ead62fc3 100644
--- a/render/html.c
+++ b/render/html.c
@@ -1681,7 +1681,7 @@ void html_stop(struct content *c)
if (content_get_status(object) == CONTENT_STATUS_DONE)
; /* already loaded: do nothing */
else if (content_get_status(object) == CONTENT_STATUS_READY)
- content_stop(object, html_object_callback, NULL);
+ hlcache_handle_abort(object);
else {
hlcache_handle_release(object);
c->data.html.object[i].content = NULL;
@@ -1847,6 +1847,11 @@ void html_destroy_iframe(struct content_html_iframe *iframe) {
}
}
+bool html_clone(const struct content *old, struct content *new_content)
+{
+ /** \todo Clone HTML specifics */
+ return true;
+}
/**
* Set the content status.