| 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 e6eb050896fbef0b0b43002ca613443e912bf69d..483b26416909da259f8fe521ca70c34ac2652bef 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -2513,8 +2513,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) {
|
|
|