| Index: third_party/WebKit/Source/core/loader/FrameLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameLoader.cpp b/third_party/WebKit/Source/core/loader/FrameLoader.cpp
|
| index 8bcca75ce95ae37b496f2ea1143073e72fb172ee..5a8739ef0bcd871379d9c38235788c9122d0d33d 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/FrameLoader.cpp
|
| @@ -495,11 +495,11 @@ void FrameLoader::finishedParsing()
|
|
|
| if (client()) {
|
| ScriptForbiddenScope forbidScripts;
|
| - client()->dispatchDidFinishDocumentLoad(m_documentLoader ? m_documentLoader->isCommittedButEmpty() : true);
|
| + client()->dispatchDidFinishDocumentLoad();
|
| }
|
|
|
| if (client())
|
| - client()->runScriptsAtDocumentReady();
|
| + client()->runScriptsAtDocumentReady(m_documentLoader ? m_documentLoader->isCommittedButEmpty() : true);
|
|
|
| checkCompleted();
|
|
|
|
|