summaryrefslogtreecommitdiff
path: root/src/core/document.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/document.h')
-rw-r--r--src/core/document.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/document.h b/src/core/document.h
index 6cf1f91..89635ff 100644
--- a/src/core/document.h
+++ b/src/core/document.h
@@ -59,6 +59,15 @@ struct dom_document {
dom_document_quirks_mode quirks;
/**< Document is in quirks mode */
dom_string *_memo_empty; /**< The string ''. */
+
+ /* Memoised event strings */
+ dom_string *_memo_domnodeinserted; /**< DOMNodeInserted */
+ dom_string *_memo_domnoderemoved; /**< DOMNodeRemoved */
+ dom_string *_memo_domnodeinsertedintodocument; /**< DOMNodeInsertedIntoDocument */
+ dom_string *_memo_domnoderemovedfromdocument; /**< DOMNodeRemovedFromDocument */
+ dom_string *_memo_domattrmodified; /**< DOMAttrModified */
+ dom_string *_memo_domcharacterdatamodified; /**< DOMCharacterDataModified */
+ dom_string *_memo_domsubtreemodified; /**< DOMSubtreeModified */
};
/* Create a DOM document */