summaryrefslogtreecommitdiff
path: root/desktop/browser.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/browser.c')
-rw-r--r--desktop/browser.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index 33cd42ba6..17490ebbe 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -321,10 +321,9 @@ void browser_window_go_post(struct browser_window *bw, const char *url,
post.data.urlenc = post_urlenc;
}
- if (parent != NULL) {
-//newcache extract charset and quirks from parent content
- child.charset = NULL;
- child.quirks = false;
+ if (parent != NULL && content_get_type(parent) == CONTENT_HTML) {
+ child.charset = html_get_encoding(parent);
+ child.quirks = content_get_quirks(parent);
}
/* Normalize the request URL */