summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/render/html.c b/render/html.c
index c2d26f7df..30b01cb04 100644
--- a/render/html.c
+++ b/render/html.c
@@ -730,6 +730,21 @@ html_document_user_data_handler(dom_node_operation operation,
}
switch (operation) {
+ case DOM_NODE_CLONED:
+ LOG("Cloned");
+ break;
+ case DOM_NODE_RENAMED:
+ LOG("Renamed");
+ break;
+ case DOM_NODE_IMPORTED:
+ LOG("imported");
+ break;
+ case DOM_NODE_ADOPTED:
+ LOG("Adopted");
+ break;
+ case DOM_NODE_DELETED:
+ /* This is the only path I expect */
+ break;
default:
LOG("User data operation not handled.");
assert(0);