Index: Source/core/events/OverflowEvent.cpp |
diff --git a/Source/core/events/OverflowEvent.cpp b/Source/core/events/OverflowEvent.cpp |
index ae61705817a7eea8e01a9a3b9bb1dd0b0879c8da..2011772e054073352c562f528eb8bd061e157286 100644 |
--- a/Source/core/events/OverflowEvent.cpp |
+++ b/Source/core/events/OverflowEvent.cpp |
@@ -41,7 +41,6 @@ OverflowEvent::OverflowEvent() |
, m_horizontalOverflow(false) |
, m_verticalOverflow(false) |
{ |
- ScriptWrappable::init(this); |
} |
OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow) |
@@ -50,7 +49,6 @@ OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOver |
, m_verticalOverflow(verticalOverflow) |
{ |
ASSERT(horizontalOverflowChanged || verticalOverflowChanged); |
- ScriptWrappable::init(this); |
if (horizontalOverflowChanged && verticalOverflowChanged) |
m_orient = BOTH; |
@@ -66,7 +64,6 @@ OverflowEvent::OverflowEvent(const AtomicString& type, const OverflowEventInit& |
, m_horizontalOverflow(initializer.horizontalOverflow) |
, m_verticalOverflow(initializer.verticalOverflow) |
{ |
- ScriptWrappable::init(this); |
} |
const AtomicString& OverflowEvent::interfaceName() const |