summaryrefslogtreecommitdiff
path: root/src/html/html_form_element.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2018-01-20 10:22:55 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2018-01-21 10:38:48 +0000
commite28c8c517ef1e89638de059c5f8da6cb8dab0adc (patch)
treec744435d4010a632b7fda19c01d03650f15e36dc /src/html/html_form_element.h
parent9158d4bedb8b16b8bc413c365a70321db6fbb1cd (diff)
downloadlibdom-e28c8c517ef1e89638de059c5f8da6cb8dab0adc.tar.gz
libdom-e28c8c517ef1e89638de059c5f8da6cb8dab0adc.tar.bz2
Add HTMLFormControlsCollection and RadioNodeListdsilvers/forms1
These are a necessary step on the way to libdom being able to manage the content and behaviours of web forms.
Diffstat (limited to 'src/html/html_form_element.h')
-rw-r--r--src/html/html_form_element.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html/html_form_element.h b/src/html/html_form_element.h
index 4987820..4a75379 100644
--- a/src/html/html_form_element.h
+++ b/src/html/html_form_element.h
@@ -12,11 +12,11 @@
#include "html/html_element.h"
-struct dom_html_collection;
-
struct dom_html_form_element {
struct dom_html_element base;
/**< The base class */
+ dom_html_form_controls_collection *elements;
+ /**< The elements collection (memoised) */
};
/* Create a dom_html_form_element object */