| Index: third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
|
| index abafc42e59fde2e848db114ea2986012010f61f9..e86a4e1416c5c669c55c48a072c3cdc207983e2f 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
|
| @@ -126,7 +126,7 @@ CustomElementDefinition::ConstructionStackScope::ConstructionStackScope(
|
| Element* element)
|
| : m_constructionStack(definition->m_constructionStack), m_element(element) {
|
| // Push the construction stack.
|
| - m_constructionStack.append(element);
|
| + m_constructionStack.push_back(element);
|
| m_depth = m_constructionStack.size();
|
| }
|
|
|
|
|