| Index: ios/web/web_state/js/resources/common.js
|
| diff --git a/ios/web/web_state/js/resources/common.js b/ios/web/web_state/js/resources/common.js
|
| index 81d0df149cdc2ed5a7975d4af07266ea093a312d..c6a096999cca301d70fa4b25424fc1fcbd13051f 100644
|
| --- a/ios/web/web_state/js/resources/common.js
|
| +++ b/ios/web/web_state/js/resources/common.js
|
| @@ -634,19 +634,6 @@ __gCrWeb['common'] = __gCrWeb.common;
|
| }
|
| }
|
| }
|
| - if (!hasFavicon) {
|
| - // If an HTTP(S)? webpage does not reference a "favicon" then search
|
| - // for a file named "favicon.ico" at the root of the website (legacy).
|
| - // http://en.wikipedia.org/wiki/Favicon
|
| - var location = document.location;
|
| - if (location.protocol == 'http:' || location.protocol == 'https:') {
|
| - var favicon = {
|
| - rel: 'icon',
|
| - href: location.origin + '/favicon.ico'
|
| - };
|
| - favicons.push(favicon);
|
| - }
|
| - }
|
| return favicons;
|
| };
|
|
|
|
|