summaryrefslogtreecommitdiff
path: root/render/html.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-03-24 00:07:21 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-03-24 00:07:21 +0000
commit9c723a5924ef5ef05d56b1addba42dafb3ca5c37 (patch)
tree7ca831a1119f68536259165dc740f9273af89ecc /render/html.h
parent2d42fc01f98cb053918f8a1cc23975e08b902614 (diff)
downloadnetsurf-9c723a5924ef5ef05d56b1addba42dafb3ca5c37.tar.gz
netsurf-9c723a5924ef5ef05d56b1addba42dafb3ca5c37.tar.bz2
[project @ 2004-03-24 00:07:21 by jmb]
Add URL rewriting for most URLs. Still TODO: 1) rewriting of @import rules 2) Objects used by embedded html pages NB. This change means that the XML parse tree is kept in memory until the content is freed. svn path=/import/netsurf/; revision=659
Diffstat (limited to 'render/html.h')
-rw-r--r--render/html.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/render/html.h b/render/html.h
index d029a7554..673e57317 100644
--- a/render/html.h
+++ b/render/html.h
@@ -36,6 +36,7 @@ struct box_position {
/** Data specific to CONTENT_HTML. */
struct content_html_data {
htmlParserCtxt *parser; /**< HTML parser context. */
+ xmlDoc *document; /**< the XML document tree */
xmlCharEncoding encoding; /**< Encoding of source. */
bool getenc; /**< Need to get the encoding from the document, as server is broken. */