| Index: ios/web/web_state/ui/crw_web_controller.mm
|
| diff --git a/ios/web/web_state/ui/crw_web_controller.mm b/ios/web/web_state/ui/crw_web_controller.mm
|
| index 11e5903941ae3abe46983d094d01cba7720790d2..944494a6005ea7c1d5d1072e04c913dfc4307aaa 100644
|
| --- a/ios/web/web_state/ui/crw_web_controller.mm
|
| +++ b/ios/web/web_state/ui/crw_web_controller.mm
|
| @@ -5038,10 +5038,9 @@ const NSTimeInterval kSnapshotOverlayTransition = 0.5;
|
| - (void)webView:(WKWebView*)webView
|
| didStartProvisionalNavigation:(WKNavigation*)navigation {
|
| GURL webViewURL = net::GURLWithNSURL(webView.URL);
|
| - if (webViewURL.is_empty() && base::ios::IsRunningOnIOS9OrLater()) {
|
| + if (webViewURL.is_empty()) {
|
| // May happen on iOS9, however in didCommitNavigation: callback the URL
|
| - // will be "about:blank". TODO(eugenebut): File radar for this issue
|
| - // (crbug.com/523549).
|
| + // will be "about:blank".
|
| webViewURL = GURL(url::kAboutBlankURL);
|
| }
|
|
|
|
|