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 2d3925b55523cc2d7d6e357b1fd10764117b31bc..7e1a51f65582ca4958ef80c6df9a15a7b353cf67 100644 |
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp |
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp |
@@ -135,7 +135,7 @@ CustomElementDefinition::ConstructionStackScope::~ConstructionStackScope() { |
DCHECK(!m_constructionStack.last() || |
m_constructionStack.last() == m_element); |
DCHECK_EQ(m_constructionStack.size(), m_depth); // It's a *stack*. |
- m_constructionStack.removeLast(); |
+ m_constructionStack.pop_back(); |
} |
// https://html.spec.whatwg.org/multipage/scripting.html#concept-upgrade-an-element |