| Index: third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
|
| index b4641f05c01730103bd4eb4afa11b771e6fd7a5a..8937bcc07b388f127f97a47100d3aa568ccafccd 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
|
| @@ -41,7 +41,7 @@ DEFINE_TRACE_WRAPPERS(CustomElementReactionStack) {
|
| }
|
|
|
| void CustomElementReactionStack::push() {
|
| - m_stack.append(nullptr);
|
| + m_stack.push_back(nullptr);
|
| }
|
|
|
| void CustomElementReactionStack::popInvokingReactions() {
|
| @@ -73,7 +73,7 @@ void CustomElementReactionStack::enqueue(Member<ElementQueue>& queue,
|
| CustomElementReaction* reaction) {
|
| if (!queue)
|
| queue = new ElementQueue();
|
| - queue->append(element);
|
| + queue->push_back(element);
|
|
|
| CustomElementReactionQueue* reactions = m_map.get(element);
|
| if (!reactions) {
|
|
|