webengine/osswebengine/WebCore/html/HTMLLinkElement.cpp
changeset 65 5bfc169077b2
parent 38 6297cdf66332
child 68 92a765b5b3e7
--- a/webengine/osswebengine/WebCore/html/HTMLLinkElement.cpp	Tue Feb 02 00:56:45 2010 +0200
+++ b/webengine/osswebengine/WebCore/html/HTMLLinkElement.cpp	Fri Mar 19 09:52:28 2010 +0200
@@ -192,13 +192,8 @@
 
     // IE extension: location of small icon for locationbar / bookmarks
     // We'll record this URL per document, even if we later only use it in top level frames
-    if (m_isIcon && !m_url.isEmpty()) {
+    if (m_isIcon && !m_url.isEmpty())
         document()->setIconURL(m_url, type);
-        if(document()->frame() && document()->frame()->loader()) {
-            // Notify frame loader to retry icon loading
-            document()->frame()->loader()->iconLoadDecisionAvailable();
-        }
-    }
 
     // Stylesheet
     // This was buggy and would incorrectly match <link rel="alternate">, which has a different specified meaning. -dwh