Index: content/browser/frame_host/render_frame_host_impl.cc |
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc |
index cc7e8ca2070e46f98ae50ee55f1d39a9a84b70c3..ff676db56414b28a6a8986670d5def976e6e88b8 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -2469,8 +2469,10 @@ void RenderFrameHostImpl::Navigate( |
// |
// Blink doesn't send throb notifications for JavaScript URLs, so it is not |
// done here either. |
- if (!common_params.url.SchemeIs(url::kJavaScriptScheme)) |
+ if (!common_params.url.SchemeIs(url::kJavaScriptScheme) && |
+ (!navigation_handle_ || !navigation_handle_->is_transferring())) { |
OnDidStartLoading(true); |
+ } |
} |
void RenderFrameHostImpl::NavigateToInterstitialURL(const GURL& data_url) { |