summaryrefslogtreecommitdiff
path: root/render/html.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2005-04-09 09:47:37 +0000
committerJames Bursa <james@netsurf-browser.org>2005-04-09 09:47:37 +0000
commit2920bca14adbf145d64754b1ef8e6b888c7995ee (patch)
treedb57b9169d89bf0bc79e06c1cde68db60adf2462 /render/html.h
parent8728712699ff8ff80bfce53308e073898c958c11 (diff)
downloadnetsurf-2920bca14adbf145d64754b1ef8e6b888c7995ee.tar.gz
netsurf-2920bca14adbf145d64754b1ef8e6b888c7995ee.tar.bz2
[project @ 2005-04-09 09:47:36 by bursa]
Move HTML contents almost fully over to talloc(), simplifying code. Improvements to title attributes, broken forms, cellpadding. Reorder functions in box_construct.c. svn path=/import/netsurf/; revision=1608
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;