| Index: third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
|
| diff --git a/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp b/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
|
| index 11bcc449806780366fda38b4e0eb900beb300375..453f1d29b1ca1030373b0a8ccbe49406ac9cdb56 100644
|
| --- a/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
|
| @@ -841,11 +841,6 @@ ResourceFetcher::determineRevalidationPolicy(Resource::Type type,
|
| existingResource->response().httpStatusCode() == 304)
|
| return Reload;
|
|
|
| - // Don't try to reuse an in-progress async request for a new sync request.
|
| - if (fetchRequest.options().synchronousPolicy == RequestSynchronously &&
|
| - existingResource->isLoading())
|
| - return Reload;
|
| -
|
| // Don't reload resources while pasting.
|
| if (m_allowStaleResources)
|
| return Use;
|
|
|