summaryrefslogtreecommitdiff
path: root/src/html/html_html_element.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 11:37:08 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 11:37:08 +0100
commite5f99e06010e626b91460afe70679c9e11bb01a1 (patch)
tree4f588e5cd1ac72a0f5e1edb0c647275fa2b5117a /src/html/html_html_element.h
parenteec1716bbd8a692aa260c24db57c0465fcb9fb43 (diff)
downloadlibdom-e5f99e06010e626b91460afe70679c9e11bb01a1.tar.gz
libdom-e5f99e06010e626b91460afe70679c9e11bb01a1.tar.bz2
HTMLHtmlElement: Support passing namespace and prefix to HTMLElement initialiser
Diffstat (limited to 'src/html/html_html_element.h')
-rw-r--r--src/html/html_html_element.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/html/html_html_element.h b/src/html/html_html_element.h
index f943f7b..61eb626 100644
--- a/src/html/html_html_element.h
+++ b/src/html/html_html_element.h
@@ -19,10 +19,12 @@ struct dom_html_html_element {
/* Create a dom_html_html_element object */
dom_exception _dom_html_html_element_create(struct dom_html_document *doc,
+ dom_string *namespace, dom_string *prefix,
struct dom_html_html_element **ele);
/* Initialise a dom_html_html_element object */
dom_exception _dom_html_html_element_initialise(struct dom_html_document *doc,
+ dom_string *namespace, dom_string *prefix,
struct dom_html_html_element *ele);
/* Finalise a dom_html_html_element object */
@@ -40,7 +42,7 @@ dom_exception _dom_html_html_element_copy(dom_node_internal *old,
dom_node_internal **copy);
#define DOM_HTML_HTML_ELEMENT_PROTECT_VTABLE \
- _dom_html_html_element_parse_attribute
+ _dom_element_parse_attribute
#define DOM_NODE_PROTECT_VTABLE_HTML_HTML_ELEMENT \
_dom_virtual_html_html_element_destroy, \