| Index: third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp
|
| index c54fd41a03b2d3fcfc9775f790edfb719f6ce1e8..342f91e42234369cd029c78a050f8c0fc0b11592 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp
|
| @@ -19,7 +19,7 @@ DEFINE_TRACE(CustomElementReactionQueue) {
|
| }
|
|
|
| void CustomElementReactionQueue::add(CustomElementReaction* reaction) {
|
| - m_reactions.append(reaction);
|
| + m_reactions.push_back(reaction);
|
| }
|
|
|
| // There is one queue per element, so this could be invoked
|
|
|