| Index: Source/WebCore/dom/CustomEvent.cpp
|
| diff --git a/Source/WebCore/dom/CustomEvent.cpp b/Source/WebCore/dom/CustomEvent.cpp
|
| index 7484d1585aeca5d7d3a14af0a4e86b9e6e088a82..83b3a856b230c5070ce839ef1b3b54998eebb765 100644
|
| --- a/Source/WebCore/dom/CustomEvent.cpp
|
| +++ b/Source/WebCore/dom/CustomEvent.cpp
|
| @@ -36,12 +36,14 @@ CustomEventInit::CustomEventInit()
|
|
|
| CustomEvent::CustomEvent()
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| CustomEvent::CustomEvent(const AtomicString& type, const CustomEventInit& initializer)
|
| : Event(type, initializer)
|
| , m_detail(initializer.detail)
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| CustomEvent::~CustomEvent()
|
|
|