summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
Diffstat (limited to 'bindings')
-rw-r--r--bindings/hubbub/parser.c11
-rw-r--r--bindings/hubbub/parser.h3
2 files changed, 9 insertions, 5 deletions
diff --git a/bindings/hubbub/parser.c b/bindings/hubbub/parser.c
index 947c6f3..0c80a65 100644
--- a/bindings/hubbub/parser.c
+++ b/bindings/hubbub/parser.c
@@ -788,12 +788,13 @@ dom_hubbub_parser_create(dom_hubbub_parser_params *params,
return (DOM_HUBBUB_HUBBUB_ERR | error);
}
- /* TODO: Just pass the dom_events_default_action_fetcher a NULL,
- * we should pass the real function when we integrate libDOM with
- * NetSurf */
+ /* create DOM document */
err = dom_implementation_create_document(DOM_IMPLEMENTATION_HTML,
- NULL, NULL, NULL,
- NULL, &binding->doc);
+ NULL,
+ NULL,
+ NULL,
+ params->daf,
+ &binding->doc);
if (err != DOM_NO_ERR) {
hubbub_parser_destroy(binding->parser);
free(binding);
diff --git a/bindings/hubbub/parser.h b/bindings/hubbub/parser.h
index 132cc86..54ad0c8 100644
--- a/bindings/hubbub/parser.h
+++ b/bindings/hubbub/parser.h
@@ -60,6 +60,9 @@ typedef struct dom_hubbub_parser_params {
dom_msg msg; /**< Informational message function */
void *ctx; /**< Pointer to client-specific private data */
+
+ /** default action fetcher function */
+ dom_events_default_action_fetcher daf;
} dom_hubbub_parser_params;
/* Create a Hubbub parser instance */