summaryrefslogtreecommitdiff
path: root/src/html/html_element.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2012-02-05 11:02:24 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2012-02-05 11:02:24 +0000
commit941e2f52a2b3d4bf0febeff73301c89aab625ae0 (patch)
tree9f381efb8c8527a964c9603d1f1de6d29c7b68bb /src/html/html_element.h
parent640921c2c92bc5aa57d9960f1dbc17bb633a4d89 (diff)
downloadlibdom-941e2f52a2b3d4bf0febeff73301c89aab625ae0.tar.gz
libdom-941e2f52a2b3d4bf0febeff73301c89aab625ae0.tar.bz2
Remove form association logic -- this is not the way to do it
svn path=/trunk/libdom/; revision=13423
Diffstat (limited to 'src/html/html_element.h')
-rw-r--r--src/html/html_element.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/html/html_element.h b/src/html/html_element.h
index 29fb28d..e183ec3 100644
--- a/src/html/html_element.h
+++ b/src/html/html_element.h
@@ -12,8 +12,6 @@
#include "core/element.h"
-struct dom_html_form_element;
-
/**
* The dom_html_element class
*
@@ -21,10 +19,6 @@ struct dom_html_form_element;
struct dom_html_element {
struct dom_element base;
/**< The base class */
- struct dom_html_form_element *form;
- /**< The form element which contains this element if
- * this element is a form control
- */
};
dom_exception _dom_html_element_initialise(struct dom_document *doc,
@@ -49,12 +43,6 @@ dom_exception dom_html_element_get_bool_property(dom_html_element *ele,
const char *name, unsigned long len, bool *has);
dom_exception dom_html_element_set_bool_property(dom_html_element *ele,
const char *name, unsigned long len, bool has);
-void _dom_html_element_get_form(dom_html_element *ele,
- struct dom_html_form_element **form);
-void _dom_html_element_associate_form(dom_html_element *ele,
- struct dom_html_form_element *form);
-
-
#endif