| Index: third_party/WebKit/Source/core/css/MediaQueryList.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/MediaQueryList.cpp b/third_party/WebKit/Source/core/css/MediaQueryList.cpp
|
| index b036426edd1a264976acb1852b406a8a88bfc62e..1b46edc8730cf55c43f1bfeff507b4297ca903ab 100644
|
| --- a/third_party/WebKit/Source/core/css/MediaQueryList.cpp
|
| +++ b/third_party/WebKit/Source/core/css/MediaQueryList.cpp
|
| @@ -97,7 +97,7 @@ bool MediaQueryList::mediaFeaturesChanged(
|
| if (!updateMatches())
|
| return false;
|
| for (const auto& listener : m_listeners) {
|
| - listenersToNotify->append(listener);
|
| + listenersToNotify->push_back(listener);
|
| }
|
| return hasEventListeners(EventTypeNames::change);
|
| }
|
|
|