summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
Diffstat (limited to 'bindings')
-rw-r--r--bindings/hubbub/parser.c3
-rw-r--r--bindings/xml/xmlparser.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/bindings/hubbub/parser.c b/bindings/hubbub/parser.c
index 97d3e24..350d7ac 100644
--- a/bindings/hubbub/parser.c
+++ b/bindings/hubbub/parser.c
@@ -145,7 +145,8 @@ dom_hubbub_parser *dom_hubbub_parser_create(
/* TODO: Just pass the dom_events_default_action_fetcher a NULL,
* we should pass the real function when we integrate libDOM with
* Netsurf */
- err = dom_implementation_create_document(NULL, NULL, NULL,
+ err = dom_implementation_create_document(DOM_IMPLEMENTATION_HTML,
+ NULL, NULL, NULL,
alloc, pw, NULL, &parser->doc);
if (err != DOM_NO_ERR) {
hubbub_parser_destroy(parser->parser);
diff --git a/bindings/xml/xmlparser.c b/bindings/xml/xmlparser.c
index ff1f9d6..7f15b83 100644
--- a/bindings/xml/xmlparser.c
+++ b/bindings/xml/xmlparser.c
@@ -315,6 +315,7 @@ void xml_parser_start_document(void *ctx)
* we should pass the real function when we integrate libDOM with
* Netsurf */
err = dom_implementation_create_document(
+ DOM_IMPLEMENTATION_XML,
/* namespace */ NULL,
/* qname */ NULL,
/* doctype */ NULL,