webengine/osswebengine/WebCore/html/HTMLLinkElement.cpp
branchRCL_3
changeset 48 79859ed3eea9
parent 27 6297cdf66332
child 49 919f36ff910f
--- a/webengine/osswebengine/WebCore/html/HTMLLinkElement.cpp	Thu Aug 19 10:58:56 2010 +0300
+++ b/webengine/osswebengine/WebCore/html/HTMLLinkElement.cpp	Tue Aug 31 16:17:46 2010 +0300
@@ -24,7 +24,7 @@
 #include "config.h"
 #include "HTMLLinkElement.h"
 
-#include "CSSHelper.h"
+#include "csshelper.h"
 #include "CachedCSSStyleSheet.h"
 #include "DocLoader.h"
 #include "Document.h"
@@ -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