summaryrefslogtreecommitdiff
path: root/src/core/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/node.h')
-rw-r--r--src/core/node.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/node.h b/src/core/node.h
index 68776da..c1a4192 100644
--- a/src/core/node.h
+++ b/src/core/node.h
@@ -15,6 +15,9 @@
#include <dom/core/node.h>
#include <dom/functypes.h>
+#include "events/event_target.h"
+#include "events/mutation_event.h"
+
#include "utils/list.h"
/**
@@ -76,6 +79,8 @@ struct dom_node_internal {
uint32_t refcnt; /**< Reference count */
struct list_entry pending_list; /**< The document delete pending list */
+
+ dom_event_target_internal eti; /**< The EventTarget interface */
};
dom_node_internal * _dom_node_create(struct dom_document *doc);