Index: Source/WebCore/dom/Entity.h |
diff --git a/Source/WebCore/dom/Entity.h b/Source/WebCore/dom/Entity.h |
index 9ee26a2bf21b90c57fb1b3936dbb2c15a96d8f44..e4ce9fcf22741fd0231ff3573d8b197a57b0a1d7 100644 |
--- a/Source/WebCore/dom/Entity.h |
+++ b/Source/WebCore/dom/Entity.h |
@@ -35,7 +35,10 @@ public: |
String notationName() const { ASSERT_NOT_REACHED(); return String(); } |
private: |
- Entity() : ContainerNode(0) {} |
+ Entity() : ContainerNode(0) |
+ { |
+ ScriptWrappable::init(this); |
+ } |
}; |
} //namespace |