summaryrefslogtreecommitdiff
path: root/src/html/html_document.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/html/html_document.h')
-rw-r--r--src/html/html_document.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/html/html_document.h b/src/html/html_document.h
index bb1a0d2..ecc6236 100644
--- a/src/html/html_document.h
+++ b/src/html/html_document.h
@@ -118,6 +118,11 @@ dom_exception _dom_html_document_get_elements_by_tag_name(dom_document *doc,
dom_exception _dom_html_document_get_elements_by_tag_name_ns(
dom_document *doc, dom_string *namespace,
dom_string *localname, dom_nodelist **result);
+dom_exception _dom_html_document_create_attribute(dom_document *doc,
+ dom_string *name, dom_attr **result);
+dom_exception _dom_html_document_create_attribute_ns(dom_document *doc,
+ dom_string *namespace, dom_string *qname,
+ dom_attr **result);
#define DOM_DOCUMENT_VTABLE_HTML \
_dom_document_get_doctype, \
@@ -129,12 +134,12 @@ dom_exception _dom_html_document_get_elements_by_tag_name_ns(
_dom_document_create_comment, \
_dom_document_create_cdata_section, \
_dom_document_create_processing_instruction, \
- _dom_document_create_attribute, \
+ _dom_html_document_create_attribute, \
_dom_document_create_entity_reference, \
_dom_html_document_get_elements_by_tag_name, \
_dom_document_import_node, \
_dom_html_document_create_element_ns, \
- _dom_document_create_attribute_ns, \
+ _dom_html_document_create_attribute_ns, \
_dom_html_document_get_elements_by_tag_name_ns, \
_dom_document_get_element_by_id, \
_dom_document_get_input_encoding, \