| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index 5106a2fdaf184dd5f01011b0186a7a689e50b075..e24bc6ea051c3b6d17b9879611a94e4840fc16a1 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -179,6 +179,7 @@
|
| #include "core/svg/SVGTitleElement.h"
|
| #include "core/svg/SVGUseElement.h"
|
| #include "core/workers/SharedWorkerRepositoryClient.h"
|
| +#include "core/xml/XMLHttpRequest.h"
|
| #include "core/xml/XSLTProcessor.h"
|
| #include "core/xml/parser/XMLDocumentParser.h"
|
| #include "platform/DateComponents.h"
|
| @@ -4690,6 +4691,9 @@ void Document::finishedParsing()
|
|
|
| if (HTMLImportLoader* import = importLoader())
|
| import->didFinishParsing();
|
| +
|
| + if (XMLHttpRequest* xhr = XMLHttpRequest::findInstancePendingDocumentParse(this))
|
| + xhr->didFinishParsingDocument();
|
| }
|
|
|
| void Document::elementDataCacheClearTimerFired(Timer<Document>*)
|
|
|