summaryrefslogtreecommitdiff
path: root/render/html.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/html.h')
-rw-r--r--render/html.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/render/html.h b/render/html.h
index e57f08b07..38b65b950 100644
--- a/render/html.h
+++ b/render/html.h
@@ -18,7 +18,6 @@
#include "libxml/HTMLparser.h"
#include "netsurf/content/content_type.h"
#include "netsurf/css/css.h"
-#include "netsurf/utils/pool.h"
struct box;
struct browser_window;
@@ -75,11 +74,10 @@ struct content_html_data {
unsigned int object_count;
/** Objects. Each may be 0. */
struct content_html_object *object;
-
- struct imagemap **imagemaps; /**< Hashtable of imagemaps */
-
- pool box_pool; /**< Memory pool for box tree. */
- pool string_pool; /**< Memory pool for strings. */
+ /** Forms, in reverse order to document. */
+ struct form *forms;
+ /** Hash table of imagemaps */
+ struct imagemap **imagemaps;
/**< Browser window containing this document, or 0 if not open. */
struct browser_window *bw;