| 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 7e1a51f65582ca4958ef80c6df9a15a7b353cf67..abafc42e59fde2e848db114ea2986012010f61f9 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
|
| @@ -132,8 +132,8 @@ CustomElementDefinition::ConstructionStackScope::ConstructionStackScope(
|
|
|
| CustomElementDefinition::ConstructionStackScope::~ConstructionStackScope() {
|
| // Pop the construction stack.
|
| - DCHECK(!m_constructionStack.last() ||
|
| - m_constructionStack.last() == m_element);
|
| + DCHECK(!m_constructionStack.back() ||
|
| + m_constructionStack.back() == m_element);
|
| DCHECK_EQ(m_constructionStack.size(), m_depth); // It's a *stack*.
|
| m_constructionStack.pop_back();
|
| }
|
|
|