| Index: third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp b/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp
|
| index 24066e601b88f18d3059da6ea6070b67cb270c1a..7d37751098d19bcd864a5a1efd2a57829ce492b9 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp
|
| @@ -591,7 +591,7 @@ void HTMLParserScriptRunner::requestDeferredScript(Element* element) {
|
| // "Add the element to the end of the list of scripts that will execute
|
| // when the document has finished parsing associated with the Document
|
| // of the parser that created the element."
|
| - m_scriptsToExecuteAfterParsing.append(pendingScript);
|
| + m_scriptsToExecuteAfterParsing.push_back(pendingScript);
|
| }
|
|
|
| PendingScript* HTMLParserScriptRunner::requestPendingScript(
|
|
|