Index: Source/WebCore/dom/Node.h |
=================================================================== |
--- Source/WebCore/dom/Node.h (revision 126676) |
+++ Source/WebCore/dom/Node.h (working copy) |
@@ -544,11 +544,13 @@ |
// |
enum InsertionNotificationRequest { |
InsertionDone, |
- InsertionShouldCallDidNotifyDescendantInsertions |
+ InsertionShouldCallDidNotifyDescendantInsertions, |
+ InsertionShouldCallDidNotifySubtreeInsertions |
}; |
virtual InsertionNotificationRequest insertedInto(ContainerNode* insertionPoint); |
virtual void didNotifyDescendantInsertions(ContainerNode*) { } |
+ virtual void didNotifySubtreeInsertions(ContainerNode*) { } |
// Notifies the node that it is no longer part of the tree. |
// |