| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index a95f10fc30b00e4b0c321788ff8a452a85917c96..7f85552f0e0c78d613bd866464b6567f90c748cb 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -2063,8 +2063,8 @@ bool WebLocalFrameImpl::maybeRenderFallbackContent(
|
| return false;
|
|
|
| FrameLoader& frameloader = frame()->loader();
|
| - frameloader.clearNavigationHandledByClient();
|
| - frameloader.loadFailed(frameloader.documentLoader(), error);
|
| + DCHECK(frameloader.provisionalDocumentLoader());
|
| + frameloader.loadFailed(frameloader.provisionalDocumentLoader(), error);
|
| return true;
|
| }
|
|
|
|
|