Index: Source/core/dom/Document.cpp |
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp |
index f24c19c72465aa0b25c454b7d671c44a9501b01a..360d3e878fe5903b5d0a4071af62126cf0497fd0 100644 |
--- a/Source/core/dom/Document.cpp |
+++ b/Source/core/dom/Document.cpp |
@@ -3915,9 +3915,6 @@ void Document::addListenerTypeIfNeeded(const AtomicString& eventType) |
} else if (eventType == EventTypeNames::DOMCharacterDataModified) { |
UseCounter::count(*this, UseCounter::DOMCharacterDataModifiedEvent); |
addMutationEventListenerTypeIfEnabled(DOMCHARACTERDATAMODIFIED_LISTENER); |
- } else if (eventType == EventTypeNames::overflowchanged && RuntimeEnabledFeatures::overflowChangedEventEnabled()) { |
- UseCounter::countDeprecation(*this, UseCounter::OverflowChangedEvent); |
- addListenerType(OVERFLOWCHANGED_LISTENER); |
} else if (eventType == EventTypeNames::webkitAnimationStart || eventType == EventTypeNames::animationstart) { |
addListenerType(ANIMATIONSTART_LISTENER); |
} else if (eventType == EventTypeNames::webkitAnimationEnd || eventType == EventTypeNames::animationend) { |