summaryrefslogtreecommitdiff
path: root/src/html/html_head_element.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 15:14:26 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 15:14:26 +0100
commit96f36b38bdfb3008d5cd6e94da6ad13faf93fd97 (patch)
treeecf3ff81b6f25bc069396dfb901c10cf52c2aa8e /src/html/html_head_element.h
parent4a4a68d432a41038397d44faaebf23c05f7d544a (diff)
downloadlibdom-96f36b38bdfb3008d5cd6e94da6ad13faf93fd97.tar.gz
libdom-96f36b38bdfb3008d5cd6e94da6ad13faf93fd97.tar.bz2
HTMLHeadElement: Support for the element, enable the test
Diffstat (limited to 'src/html/html_head_element.h')
-rw-r--r--src/html/html_head_element.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/html/html_head_element.h b/src/html/html_head_element.h
index aa6e21a..65cc3c5 100644
--- a/src/html/html_head_element.h
+++ b/src/html/html_head_element.h
@@ -19,10 +19,12 @@ struct dom_html_head_element {
/* Create a dom_html_head_element object */
dom_exception _dom_html_head_element_create(struct dom_html_document *doc,
+ dom_string *namespace, dom_string *prefix,
struct dom_html_head_element **ele);
/* Initialise a dom_html_head_element object */
dom_exception _dom_html_head_element_initialise(struct dom_html_document *doc,
+ dom_string *namespace, dom_string *prefix,
struct dom_html_head_element *ele);
/* Finalise a dom_html_head_element object */
@@ -46,5 +48,15 @@ dom_exception _dom_html_head_element_copy(dom_node_internal *old,
_dom_virtual_html_head_element_destroy, \
_dom_html_head_element_copy
+/* The API functions */
+dom_exception _dom_html_head_element_get_profile(dom_html_head_element *element,
+ dom_string **profile);
+dom_exception _dom_html_head_element_set_profile(dom_html_head_element *element,
+ dom_string *profile);
+
+#define DOM_HTML_HEAD_ELEMENT_VTABLE \
+ _dom_html_head_element_get_profile, \
+ _dom_html_head_element_set_profile
+
#endif