| Index: third_party/WebKit/Source/core/fetch/Resource.cpp
|
| diff --git a/third_party/WebKit/Source/core/fetch/Resource.cpp b/third_party/WebKit/Source/core/fetch/Resource.cpp
|
| index fa9dcf5b7530fb95082b8eae1e2b51755a5bdf04..1298c00d55756b2fc95dee8a9f09ec589304e7f5 100644
|
| --- a/third_party/WebKit/Source/core/fetch/Resource.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/Resource.cpp
|
| @@ -552,6 +552,9 @@ void Resource::setRevalidatingRequest(const ResourceRequest& request)
|
|
|
| void Resource::willFollowRedirect(ResourceRequest& newRequest, const ResourceResponse& redirectResponse)
|
| {
|
| + if (!m_revalidatingRequest.isNull())
|
| + revalidationFailed();
|
| +
|
| newRequest.setAllowStoredCredentials(m_options.allowCredentials == AllowStoredCredentials);
|
| m_redirectChain.append(RedirectPair(newRequest, redirectResponse));
|
| }
|
|
|