| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index 7755997f837a5574ff44bf827390c9cfa208929d..4796dd84e677f50f7b2fd8c55fad27bab98452fd 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -4987,7 +4987,7 @@ void Document::pushCurrentScript(Element* newCurrentScript) {
|
|
|
| void Document::popCurrentScript() {
|
| DCHECK(!m_currentScriptStack.isEmpty());
|
| - m_currentScriptStack.removeLast();
|
| + m_currentScriptStack.pop_back();
|
| }
|
|
|
| void Document::setTransformSource(std::unique_ptr<TransformSource> source) {
|
|
|